Bei meinem Lenovo ThinkPad T430 ist ständig Bluetooth nach dem Start aktiviert und Bluetooth benötige ich nicht. Bluetooth lässt sich aber auch ganz einfach bei Systemstart deaktivieren.
sudo nano /lib/systemd/system/disablebluetooth.service
Dort einfügen:
######################################################################### # # disablebluetooth.service # systemd service: disable bluetooth at start # ######################################################################### [Unit] Description=Disable Bluetooth [Service] Type=oneshot ExecStart=/usr/sbin/rfkill block bluetooth [Install] WantedBy=multi-user.target # EOF
Mit Strg + O, Enter & Strg + X abspeichern.
Nun musst der Service noch aktiviert werden.
sudo systemctl enable disablebluetooth.service
Anzeige