오디오를 Bluetooth 오디오 수신기로 스트리밍하기 위해 Lacie NAS를 A2DP Bluetooth 소스로 전환하고 싶습니다. NAS는 chroot 환경에서 Debian Squeeze를 실행하고 Bluetooth 어댑터에 연결합니다. 내 NAS에는 GUI가 설치되어 있지 않습니다.
블루투스를 사용하여 연결할 수 hciconfig hci0 up
있고 오디오 수신기와 페어링할 수도 있습니다.
~/.asoundrc
다음 내용으로 파일을 만들었습니다.
pcm.btheadset {
type bluetooth
device C8:84:47:02:59:F4
profile “auto”
}
그런 다음 실행했는데 hciconfig hci0 voice 0x0060
출력이 없었습니다.
그 후 나는 처형했다.
pactl load-module module-alsa-sink device=btheadset
그러면 다음과 같은 오류가 발생합니다.
socket(): Address family not supported by protocol
Connection failure: Connection refused
내가 한 단계 건너뛴 걸까? 아니면 내가 원하는 것을 달성할 수 있는 다른 것이 있습니까?
업데이트: 근본적인 문제는 필요한 커널 모듈이 로드되지 않는다는 것입니다. 현재 다음 모듈을 실행 중입니다.
snd_page_alloc
soundcore
btusb
uhci_hcd
rfcomm
l2cap
bluetooth
ftdi_sio
usbserial
usblp
ehci_hcd
loop
usb_storage
usbcore
블루투스를 통해 사운드를 작동하려면 다른 사운드 관련 커널 모듈이 필요합니까?