Ubuntu Natty Bluetooth beim Start deaktivieren

2011-09-03 von Mario

Bluetooth ist bei jedem Systemstart automatisch aktiviert, da ich Bluetooth eher selten benötige habe ich es deaktiviert.
In folgende Datei /etc/rc.local muss eine Zeile eingefügt werden.

1
rfkill block bluetooth

Bei mir sieht das dann so aus:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e
#
# rc.local
#
# This script is executed at the end of each multiuser runlevel.
# Make sure that the script will "exit 0" on success or any other
# value on error.
#
# In order to enable or disable this script just change the execution
# bits.
#
# By default this script does nothing.
 
rfkill block bluetooth
exit 0

Nach dem nächsten Neustart ist Bluetooth dann deaktiviert. :)

Kategorie: IT Schlagwörter: , , ,