首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >问答首页 >如何在Ubuntu22.04上检查蓝牙设备的制造商并安装驱动程序

如何在Ubuntu22.04上检查蓝牙设备的制造商并安装驱动程序
EN

Ask Ubuntu用户
提问于 2023-02-11 17:18:59
回答 1查看 592关注 0票数 2

我正在MSI CX61 2QC笔记本上运行Ubuntu22.04。我在蓝牙上遇到了一些问题,我怀疑它们可能是由过时的驱动程序引起的,甚至可能是因为Linux设备上没有驱动程序。

为了检查我的笔记本电脑有哪种蓝牙设备,我做了如下工作:

代码语言:javascript
运行
复制
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连接起来的,所以我做了:

代码语言:javascript
运行
复制
lsusb
[...]
Bus 001 Device 004: ID 13d3:3394 IMC Networks Bluetooth
[...]

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

编辑

在禁用Windows (如下面所解释的)之后,我知道在dmesg中可以看到以下内容:

代码语言:javascript
运行
复制
[    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
EN

回答 1

Ask Ubuntu用户

回答已采纳

发布于 2023-02-11 17:38:22

这是Realtek设备。更精确地说,它是一个Realtek 8723AE芯片。您可以从使用RTL和内核源代码btusb.c的日志消息中找到这一点。

代码语言:javascript
运行
复制
{ USB_DEVICE(0x13d3, 0x3394), .driver_info = BTUSB_REALTEK },

这些消息表明,Linux内核并不很好地支持IC:

代码语言:javascript
运行
复制
[    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. 如果p.1没有帮助,请通过运行ubuntu linux向Launchpad报告一个bug。

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

票数 3
EN
页面原文内容由Ask Ubuntu提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://askubuntu.com/questions/1454528

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档