Bluetooth Problem Ubuntu 18.04 LTS

See below for what worked for me. Bluetooth could not be toggled on or off from applet, nor from settings effectively. It just turned itself off for no reason. Reboot of OS would not work either. Here is someone else's fix and explanation that worked for me. PS Bluetooth applet image is still invisible.

  • update bluez to >=5.28.2

    18.04 ships with a buggy bluez package for now; newer version is available from this PPA :

    sudo add-apt-repository ppa:bluetooth/bluez
    sudo apt update
    sudo apt install bluez
    

I restart it in the terminal, and it works:

Code:

$ sudo -i
# bluetoothctl
[bluetooth]# power off
[bluetooth]# power on
[bluetooth]# scan on
[bluetooth]# connect XX:XX:XX:XX:XX:XX (your bluetooth address)
[Arc Touch Mouse SE]# trust
[Arc Touch Mouse SE]# pair
[Arc Touch Mouse SE]# unblock
[Arc Touch Mouse SE]# power off
[bluetooth]# power on

My problem is similar, but it happens only after the computer wakes up from the suspend. It only happens to Bluetooth speaker; there is no such issue with Bluetooth mouse. The current solution I find is to reboot the Bluetooth service bysudo service bluetooth restart.