深度系统蓝牙如何连接?
Tofloor
poster avatar
一天
deepin
2019-10-21 03:02
Author
今天买了个蓝牙键盘罗技K480,悲剧,系统识别不了啊,电脑有蓝牙接收器的,是不是LINUX不能用蓝牙呢?
Reply Favorite View the author
All Replies
avatar
buboerya
deepin
2019-10-21 03:11
#1
我也是这问题,联想的笔记本,蓝牙设备识别不出来,在网上找了好多的教程,搞了半天,还把系统搞崩一次,后来就放弃了。现在笔记本蓝牙也用不成,但是上个月给我dell台式机装这个系统,蓝牙是可以正常用的。
Reply View the author
avatar
一天
deepin
2019-10-21 03:25
#2
期待有人能解决,要不要在深度系统和新键盘之间选一个了。。。
Reply View the author
avatar
buboerya
deepin
2019-10-21 03:32
#3
已经解决:
1.激活/关闭蓝牙
  service bluetooth stop
  service bluetooth start
2.使用蓝牙管理软件
(1)安装软件
    sudo apt install bluetooth blueman bluez-cups
(2)在启动项“系统管理”分类中运行“蓝牙管理器”


你这个贴子也是我搜索这个问题搜索出来的,上面这个办法也是这次搜索出来的。我的笔记本装上这个软件了,适配器依然不能工作,这次也明白了一个问题,笔记本的蓝牙和wifi是一个芯片,识别有问题,我的dell台式机是我装的那种USB式的蓝牙适配器,所以驱动起来了能用。但是希望对你有帮助,试试吧。
Reply View the author
avatar
buboerya
deepin
2019-10-21 03:37
#4
按照这个思路,如果装上这个软件还不行,你等我一两天,我去公司把那个USB的适配器装笔记本上看能行不,不管能不能行,我再给你回复,如果可以,你就再买个USB式的蓝牙适配器装上,就能用你的480了,呵呵,480我也有一个,挺好用的。
Reply View the author
avatar
buboerya
deepin
2019-10-21 07:22
#5
在家里找到个蓝牙适配器,弄好了,按照上面那个办法,又结合这篇文章就弄好了,两分钟。https://zhuanlan.zhihu.com/p/31023993
用我的480给你回的。哈哈哈  终于用上了。启动笔记本里的,又研究了一晚上,搞不定,得换内核,不敢,怕崩。



Reply View the author
avatar
一天
deepin
2019-10-21 21:56
#6
https://bbs.deepin.org/post/184024
在家里找到个蓝牙适配器,弄好了,按照上面那个办法,又结合这篇文章就弄好了,两分钟。https://zhuanlan.z ...

bluez-simple-agent hci0
bash: bluez-simple-agent: 未找到命令


到这一步就错误了,还是谢谢你,我有时间了在弄吧。
Reply View the author
avatar
snsmqing
deepin
2019-10-22 00:33
#7
折腾了一下,我这儿安装上述几个软件还是不行,加上下面几条命令行,能连上罗辑K480。
* 打开蓝牙电源
$ sudo rfkill unblock bluetooth
$ sudo hciconfig hci0 up
* 进控制界面
$ sudo bluetoothctl -a
[NEW] Controller 68:07:15:AC:A7:69 miix510 [default]
Agent registered
[bluetooth]# power on
Changing power on succeeded
[bluetooth]# scan on
[CHG] Device 34:88:5D:22:60:B8 Class: 0x000540
[CHG] Device 34:88:5D:22:60:B8 Icon: input-keyboard
[CHG] Device 34:88:5D:22:60:B8 Connected: yes
[CHG] Device 34:88:5D:22:60:B8 Connected: no
[CHG] Device 34:88:5D:22:60:B8 Connected: yes
[CHG] Device 50:13:95:CBC:CF RSSI is nil
[CHG] Device 90:32:4B:7E:88:C6 RSSI is nil
[CHG] Controller 68:07:15:AC:A7:69 Discovering: no
[CHG] Device 34:88:5D:22:60:B8 Connected: no
* 命令后面跟扫描到的蓝牙键盘mac地址
[bluetooth]# pair 34:88:5D:22:60:B8
Attempting to pair with 34:88:5D:22:60:B8
[CHG] Device 34:88:5D:22:60:B8 Connected: yes
[bluetooth]# trust 34:88:5D:22:60:B8
[CHG] Device 34:88:5D:22:60:B8 Trusted: yes
Changing 34:88:5D:22:60:B8 trust succeeded
[bluetooth]# connect 34:88:5D:22:60:B8
Attempting to connect to 34:88:5D:22:60:B8
[CHG] Device 34:88:5D:22:60:B8 Connected: yes
Connection successful
Reply View the author