美文网首页
在 Archlinux 下连接蓝牙键盘

在 Archlinux 下连接蓝牙键盘

作者: Frederich | 来源:发表于2018-09-17 12:55 被阅读0次
  1. 首先需要确保相应的驱动程序已经安装,然后安装 bluez 和 bluez-utils 两个包
  2. 启动 bluetooth 服务,命令是: systemctl enable bluetooth.service
  3. 执行 bluetoothctl 命令进入蓝牙控制台,然后执行下面的命令:
[bluetooth]# pairable on
# 进入配对模式
[bluetooth]# scan on
# 扫描可配对设备
[bluetooth]# trust [蓝牙设备MAC地址]
[bluetooth]# connect [蓝牙设备MAC地址]
# 等显示待连接的蓝牙设备的 MAC 地址后,输入命令进行连接
  1. 完成以后还需要设置蓝牙设备重启后自动开启,首先是编辑 /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