I recently installed ubuntu 20.04 and bluetooth seemed to work out-of-the-box. Yesterday, it stopped working with no known reason.
I can turn it ON but the settings still show it to be OFF.
I tried the following:
$ sudo -i
$ rfkill list
0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
3: hci0: Bluetooth
Soft blocked: no
Hard blocked: no
and on running bluetoothctl
,
Agent registered [bluetooth]# power off No default controller available [bluetooth]# power on No default controller available [bluetooth]# exit
What could be the problem and how to tackle it ?
sudo systemctl start bluetooth
– Rayleigh Sep 06 '20 at 09:02sudo modprobe -r btusb; sudo modprobe -r btintel; sudo modprobe btusb; sudo modprobe btintel
. Found the answer in https://dev-qa.com/1968645/bluetooth-crashes-on-linux-5-4-how-do-i-fix-it. – mjkvaak Jun 22 '22 at 11:44sudo rmmod btusb
thensudo modprobe btusb
was enough. Context: havingBluetooth: hci0: Reading Intel version information failed (-110)
in the dmesg logs – realsarm Oct 20 '22 at 06:505.15.0-56-generic
worked. I'd detail how to do that, but I don't have enough rep to answer this question. – Jason Jan 11 '23 at 04:41