8

each time I open Ubuntu I have to turnoff bluetooth function from the top panel. my questions is that is there any method to make it disabled by default?

Muhammed
  • 95
  • 1
  • 2
  • 5

2 Answers2

10

To disable bluetooth service on startup

sudo nano /etc/rc.local

add this line before exit 0

rfkill block bluetooth
jhilmer
  • 1,195
  • 9
  • 13
0

Following the answer here, what worked for me (in Ubuntu 14.04) was

sudo gedit /etc/bluetooth/main.conf
InitiallyPowered = true     # keep it that way
# add the following:
# start bluetooth on boot?
# compatibility note: if this variable is _not_ found bluetooth will start
BLUETOOTH_ENABLED=0

Save the file and reboot.

Rodrigo
  • 566