蓝牙(Atheros AR3012)在 Ubuntu 15.04 上无法使用

蓝牙(Atheros AR3012)在 Ubuntu 15.04 上无法使用

我有一台 Zenbook UX21,但无法启动蓝牙。我刚刚安装了 blueman 和 bluez,但仍然无法连接设备,因为找不到它们。

uname -a

Linux daniel-UX21E 3.19.0-18-generic #18-Ubuntu SMP Tue May 19 18:31:35 UTC 2015 x86_64 x86_64 x86_64 GNU/Linux

lsusb | grep -i“蓝牙”

Bus 003 Device 006: ID 13d3:3375 IMC Networks Atheros AR3012 Bluetooth 4.0 Adapter

hcitool 开发

Devices:

(空列表)

rfkill 列表

0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: asus-wlan: Wireless LAN
Soft blocked: no
Hard blocked: no
2: asus-bluetooth: Bluetooth
Soft blocked: no
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: no
Hard blocked: no

编辑:Jeremy 帮助我暂时解决了我的问题(sudo hciconfig hci0 up)。

不幸的是,我重启笔记本后蓝牙无法工作。hciconfig -a 没有列出设备,所有其他命令都返回与以前相同的结果(请参阅下面的注释)。我不得不手动启动 bluez 守护进程。

sudo /etc/init.d/bluetooth status -l

bluetooth.service - Bluetooth service
  Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
  Active: active (running) since Mit 2015-06-10 09:10:33 CEST; 30min ago
Main PID: 3096 (bluetoothd)
  CGroup: /system.slice/bluetooth.service
       └─3096 /usr/sbin/bluetoothd -n

答案1

从你的评论来看,让蓝牙工作应该只需要

sudo hciconfig hci0 up

因为重启后似乎忘记了这个设置

gksudo gedit /etc/udev/rules.d/90-bluetooth.rules

并将以下内容粘贴到文件中

ACTION=="add", KERNEL=="hci0", TEST=="/usr/sbin/hciconfig", RUN+="/usr/sbin/hciconfig hci0 up"

保存,退出程序,重启即可测试

答案2

尝试为该设备安装新固件。

您可以从以下位置下载这里

也可以通过添加ppa来安装

 sudo add-apt-repository ppa:hanipouspilot/rtlwifi
 sudo apt-get update
 sudo apt-get install linux-firmware

相关内容