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/reboot.md

25 lines
436 B
Markdown
Raw Normal View History

2016-01-09 15:21:38 -05:00
# reboot
> Reboot the system.
> More information: <https://www.man7.org/linux/man-pages/man8/reboot.8.html>.
2016-01-09 15:21:38 -05:00
- Reboot the system:
2016-01-09 15:21:38 -05:00
`reboot`
- Power off the system (same as `poweroff`):
2016-01-09 15:21:38 -05:00
`reboot --poweroff`
- Halt the system (same as `halt`):
`rebooot --halt`
- Reboot immediately without contacting the system manager:
`reboot --force --force`
- Write the wtmp shutdown entry without rebooting the system:
`reboot --wtmp-only`