poweroff, halt, reboot: add examples (#5485)

This commit is contained in:
marchersimon
2021-03-25 13:46:40 +01:00
committed by GitHub
parent 3e227f7ae0
commit 9330e542b3
3 changed files with 49 additions and 11 deletions

View File

@@ -1,16 +1,24 @@
# halt
> Halt, power-off or reboot the machine.
> More information: <https://www.freedesktop.org/software/systemd/man/halt.html>.
> Halt the system.
> More information: <https://www.man7.org/linux/man-pages/man8/halt.8.html>.
- Halt the machine:
- Halt the system:
`halt`
- Power the machine off:
- Power off the system (same as `poweroff`):
`halt --poweroff`
- Reboot the machine:
- Reboot the system (same as `reboot`):
`halt --reboot`
- Halt immediately without contacting the system manager:
`halt --force --force`
- Write the wtmp shutdown entry without halting the system:
`halt --wtmp-only`