Ubuntu 20.04 Sennheisser Momentum TW 2 蓝牙连接

Ubuntu 20.04 Sennheisser Momentum TW 2 蓝牙连接

我无法通过蓝牙连接我的 Sennheisser Momentum TW 2 耳机。Android 和 Windows 运行正常,但在 Ubuntu 中会陷入循环。我只是一遍又一遍地听到“开机,已连接”。如果我只使用一个耳机,它可以正常连接,但无法激活 a2dp_sink 配置文件。我尝试了很多方法,但都没有成功。提前谢谢。

答案1

解决方案发布在此邮政。 它说:

解决方法是完全禁用 AVRCP。耳机应该可以正常工作,只是没有触摸控制。编辑文件 /lib/systemd/system/bluetooth.service 并在第 9 行末尾添加 --noplugin=avrcp。

例如

[Unit]
Description=Bluetooth service
Documentation=man:bluetoothd(8)
ConditionPathIsDirectory=/sys/class/bluetooth

[Service]
Type=dbus
BusName=org.bluez
ExecStart=/usr/local/libexec/bluetooth/bluetoothd --noplugin=avrcp
NotifyAccess=main
#WatchdogSec=10
#Restart=on-failure
CapabilityBoundingSet=CAP_NET_ADMIN CAP_NET_BIND_SERVICE
LimitNPROC=1
ProtectHome=true
ProtectSystem=full

[Install]
WantedBy=bluetooth.target
Alias=dbus-org.bluez.service

相关内容