Services

List all active services:

systemctl list-units --type=service

List only running services:

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

Search for a service:

systemctl list-units --type=service | grep "fix"

You can enter any part of a service name string. In this example the result would be: postfix.service or any other service which name contains string “fix”.

Tested in Debian or Pop OS