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
476 B
Markdown
Raw Normal View History

2016-01-09 15:21:38 -05:00
# reboot
> Reboot the system.
2022-10-10 07:35:00 +05:30
> More information: <https://manned.org/reboot.8>.
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 {{[-p|--poweroff]}}`
- Halt (terminates all processes and shuts down the CPU) the system (same as `halt`):
2021-06-01 11:01:39 -04:00
`reboot --halt`
- Reboot immediately without contacting the system manager:
`reboot {{[-f|--force]}}`
- Write the wtmp shutdown entry without rebooting the system:
`reboot {{[-w|--wtmp-only]}}`