Answers:
我遇到了同样的问题,配对耳机后,我正在使用pulseaudio -k
命令,然后设备会显示在“声音设置”中并且可以正常工作。
这不是一个好的解决方案,但这是我到目前为止所得到的。
-k | --kill Kill an already running PulseAudio daemon of the calling user (Equivalent to sending a SIGTERM).
我正在使用Ubuntu gnome 16.04。解决方案是启用自动检测,再次将耳机配对并在输出音频设备列表中选择它。
#AutoEnable=false
到AutoEnable=true
在 /etc/bluetooth/main.conf
(通知新的生产线是取消注释)sudo /etc/init.d/bluetooth restart
以下对我有用。
有一个选项/etc/bluetooth/audio.conf
叫AutoConnect=true
。确保未对此内容发表评论(即,没有哈希值)(更改#AutoConnect=true
为AutoConnect=true
)
这将使pulseaudio识别设备。
注意:对于Ubuntu 14及更高版本,该文件名为/etc/bluetooth/main.conf
。
AutoEnable=true
在/etc/bluetooth/main.conf
做的伎俩。谢谢。
我在Ubuntu GNOME 16.04上,并且找到了一个可以在此处完美运行的解决方案:
https://wiki.debian.org/BluetoothUser/a2dp
在ubuntu用户上,gdm而非Debian-gdm,具体说明如下:
为了防止GDM在会话启动时捕获A2DP接收器,请编辑/var/lib/gdm3/.config/pulse/client.conf(如果不存在,则创建它):
autospawn = no daemon-binary = /bin/true
之后,您必须向gdm用户授予对此文件的访问权限:
$ chown gdm:gdm /var/lib/gdm3/.config/pulse/client.conf
为了自动连接某些设备的a2dp,请将其添加到 /etc/pulse/default.pa:
load-module module-switch-on-connect
重启。
现在,应该可以通过pavucontrol和标准音频设备管理器访问声音设备(蓝牙耳机)。