Install bluetooth driver in Ubuntu 20.04
I have a dual-boot system of Windows 10 and Ubuntu 20.04 (AsusX55C) I want to install bluetooth drivers on my pc in Ubuntu and there are drivers that are supported only for Windows 8 according to my pc ,so I have heard that we can install Windows drivers in Ubuntu so how to do that? And the most important thing that the drivers are not manual they have to installed through the installer that the manufacrurer provide so how can I run that installer in Ubuntu. Thankyou.
Output for command lspci -knn | grep Net -A3; lsusb
is
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
Solution 1:
sudo add-apt-repository ppa:blaze/rtbth-dkms
sudo apt update
sudo apt install rtbth-dkms
sudo vim /etc/rc.local
Add the command modprobe rtbth &> /dev/null
right before "exit 0" and save.
sudo chmod 777 /etc/rc.local
sudo apt install blueman
Reboot.
sudo /etc/init.d/bluetooth start
systemctl start bluetooth
sudo modprobe btusb
sudo systemctl start bluetooth.service
sudo service bluetooth restart