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

26 lines
502 B
Markdown
Raw Normal View History

2020-10-07 09:27:39 +02:00
# reboot
> 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`
- Apaga el sistema (igual que `poweroff`):
2020-10-07 09:27:39 +02: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`