Files
tldr/pages/linux/systemctl-status.md
T
Managor c46487fe78 systemctl-*: add user unit examples (#18007)
* Update systemctl-cat.md

* Update systemctl-edit.md

* Update systemctl-mask.md

* Update systemctl-stop.md

* Update systemctl-start.md

* Update systemctl-enable.md

* Update systemctl-status.md

* Update systemctl-disable.md

* Update systemctl-restart.md

* Update systemctl-enable.md
2025-09-07 16:32:59 -07:00

742 B

systemctl status

Display the status of systemd units. More information: https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#status%20PATTERN%E2%80%A6%7CPID%E2%80%A6%5D.

  • Show the status of a systemd unit:

systemctl status {{unit}}.{{service|timer|socket|target|...}}

  • Show the status of failed units:

systemctl status --failed

  • List all running services:

systemctl status

  • List all units in the system:

systemctl status --all

  • List all units of a specific type:

systemctl status --type {{service|timer|socket|target|...}}

  • List all units with a specific state:

systemctl status --state {{active|inactive|failed}}

  • Show the status of a user unit:

systemctl status --user {{unit}}