Also Bluetooth bei starten abschalten kannst du so machen.
Orginal:
http://www.erbenux.com/verschiedenes/166-bluetooth-beim-start-automatisch-ausschalten.html
Wie im Wiki von ubuntuusers.de schon beschrieben, öffnet man das Terminal und gibt folgendes ein:
gksu gedit /etc/rc.local
Nach der Passworteingabe öffnet sich die Datei und man fügt da vor exit 0 folgendes ein:
rfkill block bluetooth
Wichtig ist, dass exit 0 immer am Ende der Datei steht.
Die rc.local Datei sieht dann wie folgt aus:
#!/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
Nun speichert man die Datei und startet den Laptop neu.
Nach dem Neustart von Ubuntu wird das Bluetooth Modul automatisch ausgeschaltet. Aber das Zeichen im Panel oben rechts bleibt bestehen.
Wenn man nun das Bluetooth doch mal brauchen sollte, kann man ganz einfach auf das Symbol klicken und Bluetooth einschalten auswählen.
Das Applet kannst du dann einfach löschen.