Below are typical uses of halt, poweroff and reboot.
- halt: instrui o hardware para parar as funções do CPU.
- poweroff: instrui o sistema para desligar.
- Reiniciar: Reiniciar ou reiniciar o sistema.
Os comandos acima mencionados só podem ser executados pelo super-utilizador, uma vez que estes envolvem as acções para parar o hardware do sistema. Se o Usuário não estiver conectado como super usuário, então o comando sudo pode ser usado para executar esses comandos.
halt Command
this instructions the hardware to stop all the CPU functions.
// syntax of halt commandhalt ...
A parada simplesmente pode ser usado para halt, poweroff e reboot do sistema :
-
// Instructs hardware to stop CPU functions.halt
-
// power off the systemhalt -p
-
// reboots the system halt --reboot
Aplicações
- Isso permite que o usuário desligar o sistema a partir da linha de comando.
- usando halt todas as funções da CPU serão paradas e o sistema entrará em um estado onde o usuário pode realizar manutenção de baixo nível.
Poweroff Command
poweroff envia um sinal ACPI que instrui o sistema para desligar. Aqui está a sintaxe dos comandos poweroff :
// syntax of poweroffpoweroff ...
O poweroff, simplesmente, pode ser usado para halt, poweroff e reboot do sistema, como :
-
// Powers off the systempoweroff
-
// Halts the systempoweroff --halt
-
// Reboots the system poweroff --reboot
Comando de reinicialização
o comando de reinicialização instrui o sistema a reiniciar. Aqui está a sintaxe do comando reiniciar:
// syntax of rebootreboot ...
o reboot pode simplesmente ser usado para parar, poweroff e reiniciar o sistema como :
-
// Halts the systemreboot --halt
-
// Powers off the systemreboot -p
-
// Reboots the system reboot