tldr/pages/linux/reboot.md

25 lines
449 B
Markdown
Raw Normal View History

2016-01-09 20:21:38 +00:00
# reboot
> Reboot the system.
2022-10-10 03:05:00 +01:00
> More information: <https://manned.org/reboot.8>.
2016-01-09 20:21:38 +00:00
- Reboot the system:
2016-01-09 20:21:38 +00:00
`reboot`
- Power off the system (same as `poweroff`):
2016-01-09 20:21:38 +00:00
`reboot --poweroff`
- Halt (terminates all processes and shuts down the CPU) the system (same as `halt`):
2021-06-01 16:01:39 +01:00
`reboot --halt`
- Reboot immediately without contacting the system manager:
2022-10-10 03:05:00 +01:00
`reboot --force`
- Write the wtmp shutdown entry without rebooting the system:
`reboot --wtmp-only`