Privacy Policy
© 2025 linux101.dev

Listing Services

`systemctl` provides powerful options to list and filter services and other systemd units.

Listing Services

List all active services

systemctl list-units --type=service --state=running

Displays all services that are currently active and running on the system.

List all loaded services

systemctl list-units --type=service

Displays all services that have been loaded into memory by systemd.

List services with autostart enabled

systemctl list-unit-files --type=service --state=enabled

Shows all services that are configured to start automatically on boot.