December 2018
Beginner
826 pages
22h 54m
English
At the command line, type the following:
$ systemctl
You should be dropped into a list of systemd units; this is a good initial overview of every unit systemd is aware of, but it's very noisy (as seen in the following screenshot) and what we specifically want to see are daemons (because of our gothic streak):

Try the following:
$ systemctl list-units --type service
You should be given a list of services and their statuses. ...