{ claus.conrad }

systemd

https://systemd.io/

Linux init system (base system component)

Resources

journald

nspawn

FAQ

List enabled timers and their next run date

systemctl list-timers

Which user services are running?

To find out which systemd user units are running, you can use the following command:

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

Explanation of the command:

  • --user: Checks the user-specific systemd instance.
  • list-units: Lists the currently active units.
  • --type=service: Filters the output to only include services. You can omit this or replace it with another type (e.g., --type=socket).
  • --state=running: Limits the output to only the running units.