如何在 Ubuntu 22.04 上检查蓝牙设备制造商并为其安装驱动程序

如何在 Ubuntu 22.04 上检查蓝牙设备制造商并为其安装驱动程序

我在 MSI CX61 2QC 笔记本电脑上运行 Ubuntu 22.04。我在蓝牙方面遇到了一些问题,我怀疑这些问题可能是由过时的驱动程序引起的,甚至是由于 Linux 上没有此设备的驱动程序。

为了检查我的笔记本电脑有哪种蓝牙设备,我已执行以下操作:

dmesg | grep -i blue
[    1.447635] usb 1-1.3: Product: RT Bluetooth Radio
[    2.570559] Bluetooth: Core ver 2.22
[    2.570584] NET: Registered PF_BLUETOOTH protocol family
[    2.570586] Bluetooth: HCI device and connection manager initialized
[    2.570591] Bluetooth: HCI socket layer initialized
[    2.570593] Bluetooth: L2CAP socket layer initialized
[    2.570597] Bluetooth: SCO socket layer initialized
[    2.643774] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
[    2.643780] Bluetooth: hci0: RTL: unknown IC info, lmp subver a5b1, hci rev 0e3d, hci ver 0006
[    2.643783] Bluetooth: hci0: RTL: assuming no firmware upload needed

蓝牙似乎是通过 USB 连接的,因此我执行以下操作:

lsusb
[...]
Bus 001 Device 004: ID 13d3:3394 IMC Networks Bluetooth
[...]

我该如何安装该驱动程序?

编辑

按照如下所述禁用 Windows 快速启动后,我知道会看到以下内容dmesg

[    1.727956] usb 1-1.3: Product: RT Bluetooth Radio
[    2.668492] Bluetooth: Core ver 2.22
[    2.668518] NET: Registered PF_BLUETOOTH protocol family
[    2.668520] Bluetooth: HCI device and connection manager initialized
[    2.668525] Bluetooth: HCI socket layer initialized
[    2.668527] Bluetooth: L2CAP socket layer initialized
[    2.668533] Bluetooth: SCO socket layer initialized
[    2.840932] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
[    3.784039] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=000b lmp_ver=06 lmp_subver=1200
[    3.784046] Bluetooth: hci0: RTL: loading rtl_bt/rtl8723a_fw.bin
[    4.551112] Bluetooth: hci0: RTL: fw version 0x0e3da5b1
[    4.811045] Bluetooth: BNEP (Ethernet Emulation) ver 1.3
[    4.811052] Bluetooth: BNEP filters: protocol multicast
[    4.811057] Bluetooth: BNEP socket layer initialized
[    4.812603] Bluetooth: MGMT ver 1.22

答案1

这是 Realtek 设备。更准确地说,它是一个芯片。您可以从带有内核源代码Realtek 8723AE的日志消息中找到这一点RTLbtusb.c

{ USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },

这些消息表明 Linux 内核对该 IC 的支持不佳:

[    2.643774] Bluetooth: hci0: RTL: examining hci_ver=06 hci_rev=0e3d lmp_ver=06 lmp_subver=a5b1
[    2.643780] Bluetooth: hci0: RTL: unknown IC info, lmp subver a5b1, hci rev 0e3d, hci ver 0006
[    2.643783] Bluetooth: hci0: RTL: assuming no firmware upload needed

可能需要一些固件。

我的建议是:

  1. 尝试安装最新的主线内核并检查其运行情况。可能已添加对此设备的支持。

  2. 如果第 1 条没有帮助,请通过运行向 Launchpad 报告错误

     ubuntu-bug linux
    

如果安装是与 Windows 双启动,请禁用 Windows 快速启动功能并检查它是否有帮助。

相关内容