A continuación se muestran los usos típicos de detener, apagar y reiniciar.
- detener: indica al hardware que detenga las funciones de la CPU.
- poweroff : indica al sistema que se apague.
- reboot : reinicia o reinicia el sistema.
Los comandos mencionados anteriormente solo pueden ser ejecutados por un superusuario , ya que implican acciones para detener el hardware del sistema. Si el usuario no ha iniciado sesión como superusuario , se puede usar el comando sudo para ejecutar estos comandos.
Comando detener
Esto le indica al hardware que detenga todas las funciones de la CPU.
// syntax of halt command halt [OPTION]...
El alto simplemente se puede usar para detener , apagar y reiniciar el sistema:
-
// Instructs hardware to stop CPU functions. halt
-
// power off the system halt -p
-
// reboots the system halt --reboot
Aplicaciones
- Esto permite al usuario apagar el sistema desde la línea de comandos.
- Al utilizar detener, se detendrán todas las funciones de la CPU y el sistema entrará en un estado en el que el usuario puede realizar un mantenimiento de bajo nivel.
Comando de apagado
poweroff Envía una señal ACPI que indica al sistema que se apague. Aquí está la sintaxis del comando poweroff:
// syntax of poweroff poweroff [OPTION]...
El apagado simplemente se puede usar para detener , apagar y reiniciar el sistema como:
-
// Powers off the system poweroff
-
// Halts the system poweroff --halt
-
// Reboots the system poweroff --reboot
Comando de reinicio
el comando de reinicio le indica al sistema que reinicie o reinicie . Aquí está la sintaxis del comando de reinicio:
// syntax of reboot reboot [OPTION]...
El reinicio simplemente se puede usar para detener , apagar y reiniciar el sistema como:
-
// Halts the system reboot --halt
-
// Powers off the system reboot -p
-
// Reboots the system reboot
Publicación traducida automáticamente
Artículo escrito por Dimpy Varshni y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA