Skip to content

Instantly share code, notes, and snippets.

@addisabrham36-boop
Created February 11, 2026 22:17
Show Gist options
  • Select an option

  • Save addisabrham36-boop/68caefe525aa1436b3f780dc2230ae9f to your computer and use it in GitHub Desktop.

Select an option

Save addisabrham36-boop/68caefe525aa1436b3f780dc2230ae9f to your computer and use it in GitHub Desktop.

HP ProBook Ubuntu Bluetooth Not Working (FIX)

Symptoms

  • Bluetooth toggle missing
  • bluetooth.service inactive (dead)
  • /sys/class/bluetooth does not exist
  • bluetooth.service was skipped

Quick Fix

Reboot the laptop.

HP ProBooks sometimes cut power to the Bluetooth chip. A full reboot restores it.


Permanent Fix

1. Enable Bluetooth at boot

sudo systemctl enable bluetooth

2. Fix Bluetooth after suspend (HP bug)

Create a system sleep hook:

sudo nano /lib/systemd/system-sleep/bluetooth-fix

Paste:

#!/bin/sh
case "$1" in
  post)
    /sbin/modprobe btusb
    /bin/systemctl restart bluetooth
  ;;
esac

Save and exit:

  • CTRL + O
  • Enter
  • CTRL + X

Make it executable:

sudo chmod +x /lib/systemd/system-sleep/bluetooth-fix

3. Auto-enable Bluetooth

sudo nano /etc/bluetooth/main.conf

Set:

AutoEnable=true

Restart Bluetooth:

sudo systemctl restart bluetooth

Emergency Command

If Bluetooth disappears again:

sudo modprobe -r btusb && sudo modprobe btusb && sudo systemctl restart bluetooth

Why this happens

HP ProBooks cut power to Bluetooth during suspend. Linux thinks the device no longer exists and skips the Bluetooth service.


Tested

  • HP ProBook
  • Ubuntu 22.04 / 24.04
@addisabrham36-boop
Copy link
Author

ok try it i am sure it will work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment