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=runningDisplays all services that are currently active and running on the system.
List all loaded services
systemctl list-units --type=serviceDisplays all services that have been loaded into memory by systemd.
List services with autostart enabled
systemctl list-unit-files --type=service --state=enabledShows all services that are configured to start automatically on boot.