- Bluetooth toggle missing
bluetooth.serviceinactive (dead)/sys/class/bluetoothdoes not exist- bluetooth.service was skipped
Reboot the laptop.
HP ProBooks sometimes cut power to the Bluetooth chip. A full reboot restores it.
sudo systemctl enable bluetoothCreate a system sleep hook:
sudo nano /lib/systemd/system-sleep/bluetooth-fixPaste:
#!/bin/sh
case "$1" in
post)
/sbin/modprobe btusb
/bin/systemctl restart bluetooth
;;
esacSave and exit:
- CTRL + O
- Enter
- CTRL + X
Make it executable:
sudo chmod +x /lib/systemd/system-sleep/bluetooth-fixsudo nano /etc/bluetooth/main.confSet:
AutoEnable=trueRestart Bluetooth:
sudo systemctl restart bluetoothIf Bluetooth disappears again:
sudo modprobe -r btusb && sudo modprobe btusb && sudo systemctl restart bluetoothHP ProBooks cut power to Bluetooth during suspend. Linux thinks the device no longer exists and skips the Bluetooth service.
- HP ProBook
- Ubuntu 22.04 / 24.04
ok try it i am sure it will work