我有最近更新的 Fedora 32。我停电了,所以我需要关闭笔记本电脑,再次启动后,蓝牙停止工作(我不确定在关机前是否更新了某些内容)。
linux 是这样说的:
$ uname -a
Linux jcubic 5.6.16-300.fc32.x86_64 #1 SMP Thu Jun 4 18:08:38 UTC 2020 x86_64 x86_64 x86_64 GNU/Linux
$ dmesg | grep -i bluetooth
[ 2.683570] Bluetooth: Core ver 2.22
[ 2.683589] Bluetooth: HCI device and connection manager initialized
[ 2.683592] Bluetooth: HCI socket layer initialized
[ 2.683593] Bluetooth: L2CAP socket layer initialized
[ 2.683595] Bluetooth: SCO socket layer initialized
[ 2.693267] bluetooth hci0: Direct firmware load for qca/rampatch_usb_00000302.bin failed with error -2
[ 2.693269] Bluetooth: hci0: failed to request rampatch file: qca/rampatch_usb_00000302.bin (-2)
[ 8.209092] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[ 8.209093] Bluetooth: BNEP filters: protocol multicast
[ 8.209095] Bluetooth: BNEP socket layer initialized
$ locate rampatch_usb_00000302.bin
/usr/lib/firmware/qca/rampatch_usb_00000302.bin
$ lsmod | grep -i bluetooth
bluetooth 643072 12 btrtl,btintel,btbcm,bnep,btusb
ecdh_generic 16384 1 bluetooth
rfkill 28672 8 bluetooth,dell_laptop,cfg80211
$ LC_ALL=C rfkill
ID TYPE DEVICE SOFT HARD
0 bluetooth hci0 unblocked unblocked
1 wlan phy0 unblocked unblocked
$ hciconfig up
hci0: Type: Primary Bus: USB
BD Address: 00:00:00:00:00:00 ACL MTU: 0:0 SCO MTU: 0:0
DOWN
RX bytes:0 acl:0 sco:0 events:0 errors:0
TX bytes:0 acl:0 sco:0 commands:0 errors:0
$ sudo systemctl status bluetooth
● bluetooth.service - Bluetooth service
Loaded: loaded (/usr/lib/systemd/system/bluetooth.service; enabled; vendor preset: enable>
Active: active (running) since Fri 2020-06-12 19:21:41 CEST; 55min ago
Docs: man:bluetoothd(8)
Main PID: 879 (bluetoothd)
Status: "Running"
Tasks: 1 (limit: 18735)
Memory: 2.9M
CGroup: /system.slice/bluetooth.service
└─879 /usr/libexec/bluetooth/bluetoothd
cze 12 19:21:41 jcubic systemd[1]: Starting Bluetooth service...
cze 12 19:21:41 jcubic bluetoothd[879]: Bluetooth daemon 5.54
cze 12 19:21:41 jcubic systemd[1]: Started Bluetooth service.
cze 12 19:21:41 jcubic bluetoothd[879]: Starting SDP server
cze 12 19:21:41 jcubic bluetoothd[879]: Bluetooth management interface 1.15 initialized
我不知道发生了什么,会不会是硬件故障?我的 grub 中只有一个 Fedora 32 内核。我最近有时会遇到笔记本电脑发出奇怪噪音的问题,可能是 CPU 风扇的问题。
编辑:
我无法找到任何解决方案,因此我从 GitHub 克隆了 Linux 存储库的镜像,似乎出现错误 -2,因为找不到文件或目录:
#define ENOENT 2 /* No such file or directory */
编辑:
我刚刚启动了 Xubuntu 20.04 的 Live DVD,并且蓝牙正在运行,我将其作为一个错误报告给 Fedora。
答案1
这是我的发现和我所做的步骤,我已将此问题报告给Fedora 错误跟踪器他们建议删除并添加内核模块:
# modprobe -r btusb
# modprobe btusb
它有点工作,dmesg 中的错误消失了,蓝牙指示器消失了(不知道如何重新启动它),但我能够使用bluetoothctl
,我能够扫描设备,但配对不起作用。我的 GNU/Linux 系统尝试连接,但随后因错误而断开连接:
连接失败:org.bluez.Error.Failed
经过一番挣扎,我解决了这个问题。在 bluez 中启用调试日志后,它显示此错误:
连接错误:权限被拒绝 (13)
所以解决方案是删除并再次配对设备:
$ bluetoothctl
[bluetooth]# devices
...
Device 04:FE:A1:57:6D:F3 JBL Flip 4
[bluetooth]# remove 04:FE:A1:57:6D:F3
[bluetooth]# scan on
[bluetooth]# pair 04:FE:A1:57:6D:F3
[bluetooth]# connect 04:FE:A1:57:6D:F3
笔记: 这只是 Fedora 中修复 bug 之前的解决方法。这也不是永久解决方案,修复后可能会再次发生。
笔记2:我多次遇到此问题,也许是内核中的错误,第二次之后我不需要在 bluetoothctl 中删除设备。删除和添加内核模块就足够了。