Skip to content

Systemd

CLI

Listing services

systemctl list-units --type service
Listing all services ( including units wich are not active)
systemctl list-units --type service --all
Listing all available service units to see if they are enabled.
systemctl list-unit-files --type service
Show status of an service
systemctl status name.service

@Dalis