mirror of https://github.com/CrimsonTome/tldr.git
25 lines
417 B
Markdown
25 lines
417 B
Markdown
# reboot
|
|
|
|
> Reinicia o sistema.
|
|
> Mais informações: <https://manned.org/reboot.8>.
|
|
|
|
- Reinicia o sistema:
|
|
|
|
`reboot`
|
|
|
|
- Desliga o sistema (igual a `poweroff`):
|
|
|
|
`reboot --poweroff`
|
|
|
|
- Suspende o sistema (igual a `halt`):
|
|
|
|
`reboot --halt`
|
|
|
|
- Reinicia imediatamente sem entrar em contato com o gerente do sistema:
|
|
|
|
`reboot --force`
|
|
|
|
- Escreve a entrada wtmp shutdown sem reinicializar o sistema:
|
|
|
|
`reboot --wtmp-only`
|