1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/poweroff.md

25 lines
455 B
Markdown
Raw Normal View History

2018-11-20 09:31:29 +05:30
# poweroff
> Power off the system.
> More information: <https://www.man7.org/linux/man-pages/man8/poweroff.8.html>.
2018-11-20 09:31:29 +05:30
- Power off the system:
2018-11-20 09:31:29 +05:30
`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 --force`
- Write the wtmp shutdown entry without shutting down the system:
`poweroff --wtmp-only`