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/halt.md

26 lines
460 B
Markdown
Raw Normal View History

2020-10-07 09:26:10 +02:00
# halt
> Detiene, apaga o reinicia la máquina.
> Ver también: `poweroff`, `reboot`.
> Más información: <https://manned.org/halt.8>.
2020-10-07 09:26:10 +02:00
- Detiene el sistema:
2020-10-07 09:26:10 +02:00
`halt`
- Apaga el sistema (igual que `poweroff`):
2020-10-07 09:26:10 +02:00
`halt --poweroff`
2020-10-07 09:26:10 +02:00
- Reinicia el sistema (igual que `reboot`):
2020-10-07 09:26:10 +02:00
`halt --reboot`
- Apaga inmediatamente el sistema sin contactar al administrador:
`halt --force`
- Escribe la entrada de apagado en wtmp sin apagar el sistema:
`halt --wtmp-only`