bluetoothctl 消息“等待连接到 bluetoothd...”

bluetoothctl 消息“等待连接到 bluetoothd...”

当前 Arch Linux

我第一次尝试使用蓝牙设备,即 Logitech 键盘。我将其适配器插入 USB 端口,然后按照说明操作

https://wiki.archlinux.org/index.php/bluetooth

我做到了

pacman -S bluez bluez-utils
modprobe btusb
bluetoothctl
  Waiting to connect to bluetoothd...
  Ctrl-C
hciconfig hci0 sspmode 0
  Can't set Simple pairing mode on hci0: Network is down (100)

它指的是哪个网络?hci0?我无法创建它,直到我获得 MAC 地址,为此我需要 bluetoothctl

此外,我还尝试了“bluetoothctl -a”并将我的用户名添加到/etc/groups 中的 lp 行,没有任何区别

答案1

您忘记开始蓝牙服务

sudo systemctl start bluetooth

如果你希望它始终启动,请确保使能够它。

sudo systemctl enable bluetooth

相关内容