Hello,
I would like to disable certain services like e.g. the bluetooth service (and other unneeded services). If I run sudo systemctl disable bluetooth.service
in the Terminal, I don't get any message/output and the service still seems to get started on reboot. After reboot systemctl status bluetooth.service
gives me
● bluetooth.service - Bluetooth service
Loaded: loaded (/usr/lib64/systemd/system/bluetooth.service; disabled; vendor preset: enabled)
Active: active (running) since Fri 2020-06-19 16:03:52 CEST; 4min 12s ago
Docs: man:bluetoothd(8)
Main PID: 1451 (bluetoothd)
Status: "Running"
Tasks: 1 (limit: 9367)
Memory: 1.9M
CGroup: /system.slice/bluetooth.service
└─1451 /usr/lib64/bluez/bluetooth/bluetoothd
but systemctl list-unit-files | grep bluetooth.service
puts out bluetooth.service disabled
, although I'm able to use bluetooth.
I'm a bit confused about this behavior. I have been on Linux Mint for a long time and disabling a service had the effect of the service not being loaded and therefore not being listed in the systemctl list-units
output. I know that disabled services can still be started as dependencies of other enabled services. Is that the case here?