From 0c549e593be6b444c126b51eb094283a12d8ffcf Mon Sep 17 00:00:00 2001 From: Managor <42655600+Managor@users.noreply.github.com> Date: Sat, 16 Aug 2025 08:20:18 +0300 Subject: [PATCH] systemctl-status: add page (#17637) * Create systemctl-status.md --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --- pages/linux/systemctl-status.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/linux/systemctl-status.md diff --git a/pages/linux/systemctl-status.md b/pages/linux/systemctl-status.md new file mode 100644 index 0000000000..f70b4a7ddc --- /dev/null +++ b/pages/linux/systemctl-status.md @@ -0,0 +1,28 @@ +# systemctl status + +> Display the status of systemd units. +> More information: . + +- 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}}`