π ~1 min read
Table of contents
Symptom & Impact
Bluetooth devices disconnect after resume and adapter no longer appears until reboot.
Environment & Reproduction
Typically seen on laptops with aggressive power management settings.
systemctl status bluetooth
rfkill list
bluetoothctl show
Root Cause Analysis
Kernel power state transitions leave the adapter in an unusable state; service restart alone may be insufficient.
Quick Triage
Review resume logs and rfkill state transitions.
journalctl -b -u bluetooth -n 120 --no-pager
journalctl -b | grep -Ei 'bluetooth|btusb|rfkill' | tail -n 120
rfkill list
Step-by-Step Diagnosis
Check module status and USB/PCI re-enumeration behavior after resume.
lsmod | grep -E 'bluetooth|btusb'
lsusb | grep -i bluetooth || true
lspci -nn | grep -i bluetooth || true

Solution – Primary Fix
Reload Bluetooth modules and restart service post-resume.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
sudo modprobe -r btusb
sudo modprobe btusb
sudo systemctl restart bluetooth
rfkill unblock bluetooth

Solution – Alternative Approaches
Tune power management to reduce adapter suspend instability.
sudo tee /etc/modprobe.d/bluetooth-pm.conf >/dev/null <<'EOF'
options btusb enable_autosuspend=0
EOF
sudo update-initramfs -u
Verification & Acceptance Criteria
Adapter remains visible and reconnects after multiple suspend-resume cycles.
bluetoothctl show
systemctl is-active bluetooth
rfkill list
Rollback Plan
Remove custom module options if they cause regressions.
sudo rm -f /etc/modprobe.d/bluetooth-pm.conf
sudo update-initramfs -u
Prevention & Hardening
Keep firmware and kernel updated and validate suspend behavior after upgrades.
uname -r
sudo apt update
sudo fwupdmgr get-updates 2>/dev/null || true
Related Errors & Cross-Refs
Related to USB autosuspend tuning, rfkill soft block state, and resume race conditions.
Related tutorial: View the step-by-step tutorial for Ubuntu 26.04 LTS.
View all Ubuntu 26.04 LTS tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Ubuntu Bluetooth troubleshooting and power-management documentation.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.