Ubuntu 双启动中的蓝牙宏碁 Aspire E5-521笔记本电脑出现故障并显示以下消息:
我也在同一个磁盘上安装了 Windows 10,但有另一个分区,并且蓝牙运行正常。
如何让蓝牙在 Ubuntu 中工作?
编辑1
我尝试sudo /etc/init.d/bluetooth start
在终端中输入:然后得到:sudo: /etc/init.d/bluetooth: command not found
编辑2
lspci -knn | grep Net -A3; lsusb
在终端中输入命令后,我得到了以下输出:
`02:00.0 Network controller [0280]: Broadcom Inc. and subsidiaries BCM43142 802.11b/g/n [14e4:4365] (rev 01)
Subsystem: Lite-On Communications Inc BCM43142 802.11b/g/n [11ad:6645]
Kernel driver in use: wl
Kernel modules: wl
Bus 002 Device 003: ID 06cb:2970 Synaptics, Inc. touchpad
Bus 002 Device 002: ID 0438:7900 Advanced Micro Devices, Inc.
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 004: ID 1bcf:2c6e Sunplus Innovation Technology Inc.
Bus 001 Device 003: ID 04ca:2009 Lite-On Technology Corp.
Bus 001 Device 002: ID 0438:7900 Advanced Micro Devices, Inc.
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub `
编辑3
我正在遵循以下解决方案:蓝牙 Broadcom 43142 无法正常工作
在步骤 7 中使用以下命令检查文件名是否正确:dmesg | grep -i blue
我收到下一条消息:
[ 23.906556] Bluetooth: Core ver 2.22 [ 23.906821] Bluetooth: HCI device and connection manager initialized [ 23.906827] Bluetooth: HCI socket layer initialized [ 23.906831] Bluetooth: L2CAP socket layer initialized [ 23.906854] Bluetooth: SCO socket layer initialized [ 24.034310] Bluetooth: hci0: BCM: chip id 70 [ 24.035305] Bluetooth: hci0: BCM: features 0x06 [ 24.051295] Bluetooth: hci0: BCM43142A [ 24.051301] Bluetooth: hci0: BCM (001.001.011) build 0000 [ 24.074628] bluetooth hci0: Direct firmware load for brcm/BCM.hcd failed with error -2 [ 24.074633] Bluetooth: hci0: BCM: Patch brcm/BCM.hcd not found [ 26.321504] Bluetooth: hci0: command 0x1003 tx timeout [ 26.322983] Bluetooth: hci0: unexpected event for opcode 0x1003
编辑4
对于我的内核 4.15.0-64-generic,.hcd 文件的正确名称似乎是 BCM.hcd。然后,在我关闭并关闭计算机后,我得到了以下命令输出dmesg | grep -i blue
:
[ 23.041730] Bluetooth: Core ver 2.22 [ 23.041765] Bluetooth: HCI device and connection manager initialized [ 23.041772] Bluetooth: HCI socket layer initialized [ 23.041776] Bluetooth: L2CAP socket layer initialized [ 23.041798] Bluetooth: SCO socket layer initialized [ 23.170312] Bluetooth: hci0: BCM: chip id 70 [ 23.171306] Bluetooth: hci0: BCM: features 0x06 [ 23.187310] Bluetooth: hci0: marin-Aspire-E5-521 [ 23.187318] Bluetooth: hci0: BCM (001.001.011) build 0270 [ 23.945369] Bluetooth: hci0: BCM (001.001.011) build 0270 [ 23.962274] Bluetooth: hci0: Bluetooth USB module
这解决了蓝牙驱动程序的固件问题。谢谢@Pilot6
但我仍然收到与问题开头相同的错误消息。因此,我决定尝试通过终端使用蓝牙。一开始,我发现以下命令:
sudo service bluetooth start
这几乎解决了我的问题;现在我可以在 Ubuntu 中正常使用蓝牙了。但仍然存在一个小问题:每次重启电脑时我都需要运行上述命令才能使蓝牙正常工作。
编辑 5 [和解决方案]
我运行命令:
sudo systemctl enable bluetooth
这可以避免每次重新启动时都必须运行:sudo service bluetooth start
。但现在蓝牙始终处于打开状态!(我认为这是意料之中的)因此,我遇到了相反的情况,每次 Ubuntu 启动时我都必须关闭蓝牙以节省电池电量,而我不需要它。因此,我转到启动应用程序首选项并取消选中蓝牙:
就这样!这彻底修复了我的 Ubuntu 蓝牙问题。
答案1
跑步
sudo systemctl enable bluetooth
这将在启动时启用该服务。