mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
25 lines
502 B
Markdown
25 lines
502 B
Markdown
# 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`
|