When I try to activate usb on my laptop, I can't see my device. I see the message below when I request the status of bluetooth.
bluetooth.service - Bluetooth service
Loaded: loaded (/lib/systemd/system/bluetooth.service; enabled; vendor preset: enabled)
Active: inactive (dead)How can I activate it?
12 Answers
To check the status of your Bluetooth, use:
sudo systemctl status bluetooth.serviceThen consider two possible solutions:
Enable bluetooth via
systemctl:sudo systemctl enable bluetooth.serviceCheck if your bluetooth is blacklisted:
sudo vi /etc/modprobe.d/blacklist.confIf the file has
blacklist btusb, exit out of the file and run :sudo modprobe btusb
This should enable Bluetooth.
Since your Bluetooth is dead, the second solution is likely to help you.
1Use systemctl to start the Bluetooth service
systemctl start bluetooth