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