1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/linux/halt.md
Reinhart Previano Koentjoro 4b9ccf7ab9
halt: fix page (#11702)
2023-12-08 18:48:28 +01:00

24 lines
383 B
Markdown

# halt
> Halt the system.
> More information: <https://manned.org/halt.8>.
- Halt the system:
`halt`
- Power off the system (same as `poweroff`):
`halt --poweroff`
- Reboot the system (same as `reboot`):
`halt --reboot`
- Halt immediately without contacting the system manager:
`halt --force`
- Write the wtmp shutdown entry without halting the system:
`halt --wtmp-only`