markdown ubuntu18.04系统启动时自动连接蓝牙键盘

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown ubuntu18.04系统启动时自动连接蓝牙键盘相关的知识,希望对你有一定的参考价值。

# 简介
系统升级到Ubuntu18.04时,启动后蓝牙键盘不能自动连接,需要虚拟键盘登录后手动连接蓝牙键盘后,才能正常使用。如何在开机时自动链接键盘?

# 查找蓝牙键盘的`Address`地址
在`Settings`->`Bluetooth`菜单中查找对应的设备,并点击。在弹出来的信息中可以找到蓝牙设备的地址

# 进入蓝牙操作模式
```
sudo bluetoothctl
```

## 设置蓝牙设备
```
[bluetooth]# power on
[bluetooth]# agent KeyboardOnly
[bluetooth]# pairable on
[bluetooth]# scan on

[bluetooth]# pair 01:02:03:04:05:06
[bluetooth]# trust 01:02:03:04:05:06
[bluetooth]# connect 01:02:03:04:05:06
[bluetooth]# quit
```

# 创建启动脚本`/etc/init.d/keyboard`
```
#! /bin/sh
sudo hcitool spinq
exit 0
```

# 设置开机时加载
```
sudo chmod +x /etc/init.d/keyboard
sudo update-rc.d keyboard defaults
sudo service keyboard start
```

以上是关于markdown ubuntu18.04系统启动时自动连接蓝牙键盘的主要内容,如果未能解决你的问题,请参考以下文章

hi3516a 与ubuntu18.04 使用nfs 启动根文件系统 过程中遇到的一个问题

Ubuntu 18.04 记录

jetson nano(ubuntu18.04)设置开机自启动python文件

ubuntu 18.04系统无法启动,出现grup

Win10+Ubuntu18.04安装双系统

如何关闭或退出安装在我的 Ubuntu 18.04 中的 Docker?