1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 17:42:07 +02:00
tldr/pages/linux/reboot.md
Alexandre ZANNI 74933e5474
reboot: update French translation, update halt description (#10800)
* reboot: update French translation, update halt description

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
Co-authored-by: Nicolas Kosinski <nicokosi@users.noreply.github.com>
2023-10-04 14:04:19 +05:30

24 lines
449 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 --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 --force`
- Write the wtmp shutdown entry without rebooting the system:
`reboot --wtmp-only`