在Ubuntu 20.04中安装蓝牙驱动

Piy*_*tre 4 bluetooth drivers 20.04

我有 Windows 10 和 Ubuntu 20.04 (AsusX55C) 双启动系统 我想在 Ubuntu 电脑上安装蓝牙驱动程序,根据我的电脑,有些驱动程序仅支持 Windows 8,所以我听说我们可以那么如何在 Ubuntu 中安装 Windows 驱动程序呢?最重要的是,驱动程序不是手动的,它们必须通过制造商提供的安装程序进行安装,所以我如何在 Ubuntu 中运行该安装程序。谢谢。

命令的输出lspci -knn | grep Net -A3; lsusb

02:00.0 Network controller [0280]: Ralink corp. RT3290 Wireless 802.11n 1T/1R PCIe [1814:3290]
    Subsystem: Foxconn International, Inc. RT3290 Wireless 802.11n 1T/1R PCIe [105b:e055]
    Kernel driver in use: rt2800pci
    Kernel modules: rt2800pci
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 001 Device 003: ID 1bcf:2883 Sunplus Innovation Technology Inc. 
Bus 001 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching Hub
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 005: ID 2717:ff40 Xiaomi Inc. Mi/Redmi series (MTP)
Bus 003 Device 002: ID 046d:c534 Logitech, Inc. Unifying Receiver
Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    
Run Code Online (Sandbox Code Playgroud)

小智 8

sudo add-apt-repository ppa:blaze/rtbth-dkms

sudo apt update

sudo apt install rtbth-dkms

sudo vim /etc/rc.local
Run Code Online (Sandbox Code Playgroud)

在“exit 0”之前添加命令modprobe rtbth &> /dev/null并保存。

sudo chmod 777 /etc/rc.local
sudo apt install blueman
Run Code Online (Sandbox Code Playgroud)

重启。

sudo /etc/init.d/bluetooth start
systemctl start bluetooth
sudo modprobe btusb 
sudo systemctl start bluetooth.service
sudo service bluetooth restart
Run Code Online (Sandbox Code Playgroud)