1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-26 01:43:58 +02:00

systemctl-{start,stop}: add pages (#17741)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Dylan 2025-08-21 23:31:29 +00:00 committed by GitHub
parent 82f47d9845
commit 06f710036c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 20 additions and 0 deletions

View file

@ -0,0 +1,8 @@
# systemctl start
> Start systemd units.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#start%20PATTERN%E2%80%A6>.
- Start a unit:
`systemctl start {{unit}}`

View file

@ -0,0 +1,12 @@
# systemctl stop
> Stop systemd units.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#stop%20PATTERN%E2%80%A6>.
- Stop a unit:
`systemctl stop {{unit}}`
- Stop a service and suppress warnings:
`systemctl stop --no-warn {{unit}}`