新配了台机器,主板有集成的蓝牙设备。装了Fedora 15,但是Gnome 3中“蓝牙”选项是灰色的,无法使用。
原本以为是没装驱动,可最后运行

hciconfig

却发现有输出:

hci0:    Type: BR/EDR  Bus: USB
    BD Address: 00:26:83:2E:C5:97  ACL MTU: 1022:8  SCO MTU: 121:3
    UP RUNNING PSCAN 
    RX bytes:2553 acl:0 sco:0 events:106 errors:0
    TX bytes:1436 acl:0 sco:0 commands:106 errors:0

于是使用

hciconfig hci0 on

来激活蓝牙设备,结果Gnome 3中“蓝牙”选项依然是灰色的。查阅了资料以后,发现蓝牙服务在Fedora 15中默认是关闭的(我觉得是明智的决定,因为我的笔记本没有蓝牙,但是蓝牙服务会导致报错),让root执行:

systemctl start bluetooth.service

来启动蓝牙服务,如果需要开机自启动蓝牙服务,则以root执行:

systemctl enable bluetooth.service

即可!