tldr/pages/linux/halt.md

25 lines
419 B
Markdown
Raw Normal View History

2016-05-27 16:47:57 +01:00
# halt
> Halt the system.
> More information: <https://www.man7.org/linux/man-pages/man8/halt.8.html>.
2016-05-27 16:47:57 +01:00
- Halt the system:
2016-05-27 16:47:57 +01:00
`halt`
- Power off the system (same as `poweroff`):
2020-10-07 12:38:05 +01:00
`halt --poweroff`
- Reboot the system (same as `reboot`):
2016-05-27 16:47:57 +01:00
`halt --reboot`
- Halt immediately without contacting the system manager:
`halt --force --force`
- Write the wtmp shutdown entry without halting the system:
`halt --wtmp-only`