Answers for "bluetooth not working in ubuntu 20.04"

4

ubuntu bluetooth not working

#turn bluetooth on:
sudo /etc/init.d/bluetooth restart

# make it automatic on boot
sudo systemctl enable bluetooth
Posted by: Guest on October-24-2020
3

ubuntu 20.04 bluetooth not turning on or working

#turn bluetooth on:
sudo /etc/init.d/bluetooth start

# make it automatic on boot
sudo systemctl enable bluetooth
Posted by: Guest on October-24-2020
0

bluetooth not working in ubuntu 20.04

sudo rmmod btusb
sudo modprobe btusb
Posted by: Guest on January-02-2021
0

ubuntu bluetooth not working after suspend

#!/bin/sh
# sudo nano /lib/systemd/system-sleep/bt
# Paste in this script:

case $1 in
  post)
    modprobe -r btusb
    sleep 1
    service bluetooth restart
    sleep 1
    modprobe btusb
    ;;
esac

# An finally make it executable
chmod +x /lib/systemd/system-sleep/bt
Posted by: Guest on October-08-2020

Code answers related to "bluetooth not working in ubuntu 20.04"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language