Created
June 23, 2015 12:04
-
-
Save Shaltz/dc99bd0a827a51f93b32 to your computer and use it in GitHub Desktop.
Bluetooth on Ubuntu for Asus N53SV
This file contains 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
rfkill list | |
0: hci0: Bluetooth | |
Soft blocked: no | |
Hard blocked: no | |
1: asus-wlan: Wireless LAN | |
Soft blocked: no | |
Hard blocked: no | |
2: asus-bluetooth: Bluetooth | |
Soft blocked: no | |
Hard blocked: no | |
3: phy0: Wireless LAN | |
Soft blocked: no | |
Hard blocked: no | |
After reading several other posts, I found this solution. | |
Install gksu if not already installed. | |
sudo apt-get install gksu -y | |
Then edit /etc/rc.local and enter this line just before the "exit=0" entry. | |
gksudo gedit /etc/rc.local | |
In gedit before the last entry, which is "exit=0", enter: | |
rfkill unblock bluetooth | |
Then reboot and you should be able to turn on bluetooth, if not already enabled after reboot. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment