26 lines
502 B
Markdown
Raw Normal View History

# reboot
> Reinicia el sistema.
> Vea también: `halt`, `poweroff`.
> Más información: <https://manned.org/reboot.8>.
- Reinicia inmediatamente:
`reboot`
- Apaga el sistema (igual que `poweroff`):
`reboot --poweroff`
- Detiene (termina todos los procesos y apaga la CPU) el sistema (igual que `halt`):
`reboot --halt`
- Reinicia inmediatamente sin contactar al administrador del sistema:
`reboot --force`
- Escribe la entrada wtmp de apagado sin reiniciar el sistema:
`reboot --wtmp-only`