在别的论坛有高人指出问题所在:不要GUI界面连接,在终端界面输入:sudo hidd --search
至于开机重启自动连接问题 要修改文件蓝牙配置文件:
~$ sudo gedit /etc/default/bluetooth
在打开文件中,添加如下代码:
# start bluetooth on boot?
# compatibility note: If this variable is not found bluetooth will
# start
BLUETOOTH_ENABLED=1
############ HIDD
#
# To have Bluetooth mouse and keyboard support, get the
# Linux 2.6.6 patch or better from bluez.org, and set
# HIDD_ENABLED to 1.
HIDD_ENABLED=1
HIDD_OPTIONS="--connect aa:bb:cc:dd:ee:ff --server"
aa:bb:cc:dd:ee:ff是蓝牙鼠标mac地址(一般在鼠标上有,没有可以用sudo hidd --search)
编辑rc.local
$ sudo gedit /etc/init.d/rc.local
.建立一个文件/etc/init.d/xloadBluetooth.sh,内容是
代码