2
rated 0 times
[
2]
[
0]
/ answers: 1 / hits: 1185
/ 2 Years ago, fri, september 24, 2021, 7:53:13
Does anyone know how to permanently disable bluetooth in Kubuntu 14.04?
More From » kubuntu
Does anyone know how to permanently disable bluetooth in Kubuntu 14.04?
You can write a simple script and load it on start-up to disable bluetooth permanently.
Open your editor using gksudo kate
and copy this in it.
#!/bin/bash
rfkill block bluetooth
/etc/init.d
with <any_name>.sh
.sudo chmod +x /etc/init.d/<script_name>.sh
.sudo update-rc.d
/etc/init.d/<script_name>.sh defaults
.It will disable your bluetooth on system startup.