라즈베리파이에서 여러 Bluetooth 장치가 보일 때, 갤럭시 버즈(Galaxy Buds) 를 식별하는 가장 효과적인 방법은 다음과 같습니다:bluetooth 관련 패키지 설치sudo apt updatesudo apt install pulseaudio pulseaudio-module-bluetooth bluez pavucontrol -yPulseAudio 블루투스 모듈이 활성화되었는지 확인pactl list modules short | grep bluetooth아무것도 안 나올 경우 → 수동으로 모듈 로드:pactl load-module module-bluetooth-discover이 명령은 PulseAudio에서 블루투스 장치를 Sink(출력) 으로 인식하게 해줍니다.PulseAudio가 실행 중인지..