7

My Bluetooth suddenly stopped working in the middle of usage and I couldn't turn it on until I restarted my machine.

Bluetooth in the settings:

Bluetooth in the settings

Bluetooth in the top bar:

Bluetooth in the top bar

Below is the output of my rfkill list:

0: phy0: Wireless LAN
Soft blocked: no
Hard blocked: no
1: hci0: Bluetooth
Soft blocked: yes
Hard blocked: no

I tried unblocking it from the command line using sudo rfkill unblock bluetooth and reinstalling the bluez package by running sudo apt install --reinstall bluez, but both methods did not work.

I just upgraded my machine to Ubuntu 18.04 from 16.04 and thought this problem would go away, but in fact it persists. Does anyone know how to fix it?

3 Answers3

0

The only solution I found was

  1. Reboot
  2. Turn off the bluetooth in the BIOS
  3. Exit
  4. Get into the BIOS again and turn it on...

This is super tedious and I'm still looking for a workaround...

zx485
  • 2,426
0

One thing that worked for me was to reload the btusb module, like this:

sudo modprobe -r btusb
sudo modprobe btusb

I did this on Debian 10, Ubuntu 18.04, Ubuntu 21.04, … It never ends.

Yldun
  • 1
0

I ran into the same problem and kept trying different solutions, until i saw a StackOverflow post stating to just:

Shutdown and ​Boot again

This fixed the problem with me.

jsbisht
  • 373