Does anyone know how to permanently disable bluetooth in Kubuntu 14.04?
Asked
Active
Viewed 1,175 times
2 Answers
2
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
- Save it under
/etc/init.d
with<any_name>.sh
. - Now make it executable using
sudo chmod +x /etc/init.d/<script_name>.sh
. - Now use following command
sudo update-rc.d /etc/init.d/<script_name>.sh defaults
.
It will disable your bluetooth on system startup.

g_p
- 18,504
1
Better try and type this in your terminal
rfkill block bluetooth
Hope it disables the bluetooth
for unblocking use
rfkill unblock bluetooth
If it shows access denied to rfkill then use
sudo rfkill block bluetooth
-
I entered the command and rebooted my laptop but the bluetooth icon says its on. – Leo Aug 24 '14 at 19:28
<script_name>
with the name of your script. I mean suppose you have saved your scrpit with the namebluetooth.sh
then use last command like this.sudo chmod +x /etc/init.d/bluetooth.sh
. – g_p Aug 24 '14 at 20:02.
afterrfkill block bluetooth
in your script ? – g_p Aug 24 '14 at 20:17~/.kde/Autostart
folder and assing it executable permission usingchmod +x ~/.kde/Autostart/<script_name>.sh
. – g_p Aug 24 '14 at 20:49