在 Archlinux 下连接蓝牙键盘
- 首先需要确保相应的驱动程序已经安装,然后安装 bluez 和 bluez-utils 两个包
- 启动 bluetooth 服务,命令是: systemctl enable bluetooth.service
- 执行 bluetoothctl 命令进入蓝牙控制台,然后执行下面的命令:
[bluetooth]# pairable on
# 进入配对模式
[bluetooth]# scan on
# 扫描可配对设备
[bluetooth]# trust [蓝牙设备MAC地址]
[bluetooth]# connect [蓝牙设备MAC地址]
# 等显示待连接的蓝牙设备的 MAC 地址后,输入命令进行连接
- 完成以后还需要设置蓝牙设备重启后自动开启,首先是编辑 /etc/bluetooth/main.conf 文件,在 [policy] 栏中加入 AutoEnable=true ,然后编辑/usr/lib/systemd/system/bluetooth.service ,在 ExecStart 后加入 --plugin=policy,类似:
ExecStart=/usr/lib/bluetooth/bluetoothd --plugin=policy
本文标题:在 Archlinux 下连接蓝牙键盘
本文链接:https://www.haomeiwen.com/subject/nptlnftx.html
网友评论