2020-10-07 09:27:39 +02:00
|
|
|
# reboot
|
|
|
|
|
2024-10-30 04:54:32 -05:00
|
|
|
> Reinicia el sistema.
|
|
|
|
> Vea también: `halt`, `poweroff`.
|
2022-10-10 07:35:00 +05:30
|
|
|
> Más información: <https://manned.org/reboot.8>.
|
2020-10-07 09:27:39 +02:00
|
|
|
|
|
|
|
- Reinicia inmediatamente:
|
|
|
|
|
|
|
|
`reboot`
|
|
|
|
|
2024-10-30 04:54:32 -05:00
|
|
|
- Apaga el sistema (igual que `poweroff`):
|
2020-10-07 09:27:39 +02:00
|
|
|
|
2024-10-30 04:54:32 -05:00
|
|
|
`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`
|