I was just wondering how to disable bluetooth startup by default in 17.04. I would like to be able to boot, and not have to turn off bluetooth every time. Any help would be greatly appreciated.
Thanks
I was just wondering how to disable bluetooth startup by default in 17.04. I would like to be able to boot, and not have to turn off bluetooth every time. Any help would be greatly appreciated.
Thanks
If I'm not mistaken you can turn it off in the systemsettings and it will stay offline?
If this doesn't work you can disable the service itself.
sudo systemctl disable bluetooth.service && sudo systemctl stop bluetooth.service
If you want to activate it again.
sudo systemctl enable bluetooth.service && sudo systemctl start bluetooth.service
The enable and disable is used so during the next startup it is either started or not.