Skip to content

systemd

https://systemd.io/

Linux init system (base system component)

List enabled timers and their next run date

Section titled “List enabled timers and their next run date”
Terminal window
systemctl list-timers

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

Terminal window
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.