Skip to content

Instantly share code, notes, and snippets.

@Shaltz
Created June 23, 2015 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Shaltz/dc99bd0a827a51f93b32 to your computer and use it in GitHub Desktop.
Save Shaltz/dc99bd0a827a51f93b32 to your computer and use it in GitHub Desktop.
Bluetooth on Ubuntu for Asus N53SV
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