Here are some things to try.
The first one here is obvious, but you never know. Not all computers support bluetooth. Does yours?
NOTE:** Bluetooth usually doesn't work from a VM. **
One of those two commands should return some device of some kind. If not, you likely don't support bluetooth.
If it isn't running...
If it's not installed, you can try to install bluez, it's more or less the standard tool for bluetooth in most distro's these days.
or
If these things are already installed, sometimes a restart will clear things up.
A handy tool to have for audio trouleshooting is....
or
You can check to see if the bluetooth kernel modules are loaded.
Sometimes removing them, and re-installing them helps.
You can check your bluetooth status with...
If it's blocked, you can un-block it with...
Not all distro's support these but some other tools you can install and try are....
You can use hcitool to view and configure connections.
Sometimes restarting the bluetooth daemon helps.
You can run this from the command line.
That will give you some options to try as well.
The first one here is obvious, but you never know. Not all computers support bluetooth. Does yours?
NOTE:** Bluetooth usually doesn't work from a VM. **
Code:
lsusb | grep -i blue
Code:
lspci | grep -i blue
One of those two commands should return some device of some kind. If not, you likely don't support bluetooth.
Code:
sudo systemctl status bluetooth
If it isn't running...
Code:
sudo systemctl enable bluetooth
sudo systemctl start bluetooth
If it's not installed, you can try to install bluez, it's more or less the standard tool for bluetooth in most distro's these days.
Code:
sudo apt-get install bluez bluez-tools
Code:
sudo dnf install bluez bluez-tools
If these things are already installed, sometimes a restart will clear things up.
Code:
sudo service bluetooth restart
A handy tool to have for audio trouleshooting is....
Code:
sudo apt-get install pavucontrol
Code:
sudo dnf install pavucontrol
You can check to see if the bluetooth kernel modules are loaded.
Code:
sudo modprobe btusb
Code:
lsmod | grep btusb
Sometimes removing them, and re-installing them helps.
Code:
sudo rmmod btusb
sudo modprobe btusb
You can check your bluetooth status with...
Code:
rfkill list bluetooth
If it's blocked, you can un-block it with...
Code:
sudo rfkill unblock bluetooth
Not all distro's support these but some other tools you can install and try are....
Code:
bluetoothctl
You can use hcitool to view and configure connections.
Code:
sudo hcitool dev
sudo hcitool scan
Sometimes restarting the bluetooth daemon helps.
Code:
sudo systemctl restart bluetooth
You can run this from the command line.
Code:
blueman-manager
That will give you some options to try as well.
Last edited: