mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-02 16:43:08 +00:00
23 lines
566 B
Plaintext
23 lines
566 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# systemctl-poweroff
|
|
|
|
> Power off the system.
|
|
> See also: `poweroff`.
|
|
> More information: <https://www.freedesktop.org/software/systemd/man/latest/systemctl.html#poweroff>.
|
|
|
|
- Power off the system:
|
|
|
|
`systemctl poweroff`
|
|
|
|
- Power off the system immediately without asking services to stop gracefully:
|
|
|
|
`systemctl poweroff {{[-f|--force]}}`
|
|
|
|
- Power off the system immediately without sending notifications to logged-in users:
|
|
|
|
`systemctl poweroff {{[-f|--force]}} --no-wall`
|