如何在 ubuntu 20.04 上配对+设置+连接 airpod pro

Kay*_*Kay 9 bluetooth

我使用的是 Ubuntu 20.04,我拥有一对 Airpod pro。

Ubuntu 检测到设备但无法配对/设置/连接。我知道这一点,因为当我点击它时,它有一个旋转的标志,就像它试图连接一样,然后它只是返回到默认的“未设置”。

在此处输入图片说明

我遵循了这里设置 ControllerMode 的建议,我尝试了“dual”和“le”,但都没有成功。

kay@khan:~$ sudo /etc/init.d/bluetooth status

? bluetooth.service - Bluetooth service
     Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
     Active: active (running) since Sun 2020-05-17 18:13:04 BST; 2s ago
       Docs: man:bluetoothd(8)
   Main PID: 2808 (bluetoothd)
     Status: "Running"
      Tasks: 1 (limit: 18696)
     Memory: 956.0K
     CGroup: /system.slice/bluetooth.service
             ??2808 /usr/lib/bluetooth/bluetoothd

May 17 18:13:04 khan systemd[1]: Starting Bluetooth service...
May 17 18:13:04 khan bluetoothd[2808]: Bluetooth daemon 5.53
May 17 18:13:04 khan systemd[1]: Started Bluetooth service.
May 17 18:13:04 khan bluetoothd[2808]: Bluetooth management interface 1.14 initialized
May 17 18:13:04 khan bluetoothd[2808]: Endpoint registered: sender=:1.140 path=/MediaEndpoint/A2DPSink/sbc
May 17 18:13:04 khan bluetoothd[2808]: Endpoint registered: sender=:1.140 path=/MediaEndpoint/A2DPSource/sbc
Run Code Online (Sandbox Code Playgroud)

蓝牙设备:https : //www.amazon.co.uk/gp/product/B07FBSV1XZ/

小智 12

简短的回答是:使用这里ControllerMode = bredr讨论的

为他人:

  1. ControllerMode = bredr通过/etc/bluetooth/main.conf使用sudo nano /etc/bluetooth/main.conf命令(或您选择的其他文本编辑器)编辑文件来设置
  2. sudo /etc/init.d/bluetooth restart
  3. 再次尝试配对。

  • 我和OP有同样的问题。这个解决方案对我没有帮助。将模式设置为“bredr”并重新启动服务只会导致耳机根本不响应我的点击(在默认(双)模式下点击:旋转轮最终超时,在 bredr 模式下点击:根本没有响应,甚至不旋转车轮)。 (3认同)
  • 哇哦,在我的例子中,“ControllerMode”前面有一个“#”,所以该变量一开始就没有处于活动状态!您需要取消注释该行,以便 init 不会使用默认值初始化! (2认同)