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
2025-03-13 04:41:47 +02:00

24 lines
476 B
Markdown

# reboot
> Reboot the system.
> More information: <https://manned.org/reboot.8>.
- Reboot the system:
`reboot`
- Power off the system (same as `poweroff`):
`reboot {{[-p|--poweroff]}}`
- Halt (terminates all processes and shuts down the CPU) the system (same as `halt`):
`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]}}`