Skip to content

systemctl-status: add page #17637

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Aug 16, 2025
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions pages/linux/systemctl-status.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# 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}}`