1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.es/linux/reboot.md
2024-10-30 10:54:32 +01:00

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`