Bluetooth Mouse on Ubuntu
Filed in: 軟體 Add comments
在 Ubuntu 底下使用 Bluetooth Mouse
首先把 HIDD_ENABLED 設成 1
$ sudo vi /etc/default/bluez-utils
HIDD_ENABLED=1
接著重跑 bluez-utils
$ sudo /etc/init.d/bluez-utils restart
掃描裝置
$ sudo hcitool scan
連結裝置
$ hidd –connect 00:07:61:4A:F7:4B
查詢連結的裝置
$ sudo hidd –show
加入 rfcomm.conf 中,開機時自動抓到
/etc/bluetooth/rfcomm.conf:
rfcomm0 {
bind yes;
device 00:07:61:4A:F7:4B;
channel 1;
comment “Bluetooth Mouse”
}
That’s all.