mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
30 lines
513 B
Plaintext
30 lines
513 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, linux]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# poweroff
|
|
|
|
> Power off the system.
|
|
> More information: <https://www.manned.org/poweroff>.
|
|
|
|
- Power off the system:
|
|
|
|
`poweroff`
|
|
|
|
- Halt the system (same as `halt`):
|
|
|
|
`poweroff --halt`
|
|
|
|
- Reboot the system (same as `reboot`):
|
|
|
|
`poweroff --reboot`
|
|
|
|
- Shut down immediately without contacting the system manager:
|
|
|
|
`poweroff --force`
|
|
|
|
- Write the wtmp shutdown entry without shutting down the system:
|
|
|
|
`poweroff --wtmp-only`
|