蓝牙选项自行关闭

蓝牙选项自行关闭

我对 Linux 还比较陌生,但我已经尝试了很多修复方法,但似乎无法解决蓝牙问题。

当我进入蓝牙选项并切换它时,它会立即关闭,我尝试安装 bluez 和其他东西,但仍然没有用,尝试服务蓝牙重启,但没有用

我尝试运行hciconfig并得到了这个:

    BD Address: 14:2D:27:E6:37:40  ACL MTU: 0:0  SCO MTU: 0:0
    DOWN 
    RX bytes:328 acl:0 sco:0 events:8 errors:0
    TX bytes:27 acl:0 sco:0 commands:9 errors:0

也尝试过sudo hciconfig -a hci0 up,但是我得到了这个: Can't init device hci0: Connection timed out (110)

有人可以帮我解决这个问题吗?

以下是一些可能有帮助的输出

lspci -knn | grep Net -A3; lsusb; dmesg | grep -i blue

    Subsystem: Lenovo BCM43142 802.11b/g/n [17aa:0621]
    Kernel driver in use: wl
    Kernel modules: wl
Bus 001 Device 002: ID 8087:8000 Intel Corp. Integrated Rate Matching Hub
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 003 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
Bus 002 Device 005: ID 105b:e065 Foxconn International, Inc. BCM43142A0 Bluetooth module
Bus 002 Device 004: ID 5986:055d Bison Electronics Inc. Lenovo EasyCamera
Bus 002 Device 003: ID 0bda:0129 Realtek Semiconductor Corp. RTS5129 Card Reader Controller
Bus 002 Device 013: ID 093a:2510 Pixart Imaging, Inc. Optical Mouse
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
dmesg: read kernel buffer failed: Operation not permitted

sudo systemctl status bluetooth.service

     Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; preset: enabled)
     Active: active (running) since Mon 2023-11-13 13:47:02 +03; 14min ago
       Docs: man:bluetoothd(8)
   Main PID: 37881 (bluetoothd)
     Status: "Running"
      Tasks: 1 (limit: 4483)
     Memory: 1004.0K
        CPU: 61ms
     CGroup: /system.slice/bluetooth.service
             └─37881 /usr/lib/bluetooth/bluetoothd

Nov 13 13:47:02 amal-jose-Lenovo-G50-70 systemd[1]: Starting bluetooth.service - Bluetooth service...
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: Bluetooth daemon 5.68
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 systemd[1]: Started bluetooth.service - Bluetooth service.
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: Starting SDP server
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: src/plugin.c:plugin_init() System does not support csip plugin
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: src/plugin.c:plugin_init() System does not support vcp plugin
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: src/plugin.c:plugin_init() System does not support mcp plugin
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: src/plugin.c:plugin_init() System does not support bass plugin
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: src/plugin.c:plugin_init() System does not support bap plugin
Nov 13 13:47:02 amal-jose-Lenovo-G50-70 bluetoothd[37881]: Bluetooth management interface 1.22 initialized

sudo dmesg |grep -i bluetooth

[   16.263101] NET: Registered PF_BLUETOOTH protocol family
[   16.263102] Bluetooth: HCI device and connection manager initialized
[   16.263117] Bluetooth: HCI socket layer initialized
[   16.263118] Bluetooth: L2CAP socket layer initialized
[   16.263122] Bluetooth: SCO socket layer initialized
[   17.454391] Bluetooth: hci0: BCM: chip id 70
[   17.455339] Bluetooth: hci0: BCM: features 0x06
[   17.471346] Bluetooth: hci0: BCM43142A
[   17.471356] Bluetooth: hci0: BCM43142A0 (001.001.011) build 0000
[   17.702978] Bluetooth: hci0: BCM: firmware Patch file not found, tried:
[   17.703027] Bluetooth: hci0: BCM: 'brcm/BCM43142A0-105b-e065.hcd'
[   17.703052] Bluetooth: hci0: BCM: 'brcm/BCM-105b-e065.hcd'
[   19.720770] Bluetooth: hci0: command 0x1003 tx timeout
[   19.724748] Bluetooth: hci0: Opcode 0x1003 failed: -110
[   26.743073] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[   26.743081] Bluetooth: BNEP filters: protocol multicast
[   26.743089] Bluetooth: BNEP socket layer initialized

相关内容