Created
March 29, 2023 13:43
-
-
Save asilbalaban/2baddecd4c03644184546a86172653f6 to your computer and use it in GitHub Desktop.
Ubuntu Bluetooth Connectivity Issues Fixer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
systemctl stop bluetooth | |
hciconfig hci0 down | |
rmmod btusb | |
modprobe btusb | |
hciconfig hci0 up | |
systemctl start bluetooth |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment