GeeksforGeeks

A continuación son los usos típicos de halt, poweroff y reboot.

  1. halt: Indica al hardware que detenga las funciones de la CPU.
  2. apagado: Indica al sistema que se apague.
  3. reiniciar: Reinicia o reinicia el sistema.

Los comandos mencionados anteriormente solo pueden ser ejecutados por super user, ya que implican las acciones para detener el hardware del sistema. Si el usuario no ha iniciado sesión como superusuario, el comando sudo se puede usar para ejecutar estos comandos.

Comando halt

Esto indica al hardware que detenga todas las funciones de la CPU.

// syntax of halt commandhalt ...

El alto simplemente puede ser utilizado para halt, poweroff y reiniciar el sistema :

  • // Instructs hardware to stop CPU functions.halt
  • // power off the systemhalt -p
  • // reboots the system halt --reboot

Aplicaciones

  • Esto permite al usuario apagar el sistema desde la línea de comandos.
  • Usando halt todas las funciones de la CPU se detendrán y el sistema entrará en un estado donde el usuario puede realizar un mantenimiento de bajo nivel.

comando de apagado

el apagado Envía una señal ACPI que indica al sistema que se apague. Aquí está la sintaxis del comando poweroff :

// syntax of poweroffpoweroff ...

El apagado simplemente se puede usar para detener, apagar y reiniciar el sistema como :

  • // Powers off the systempoweroff
  • // Halts the systempoweroff --halt
  • // Reboots the system poweroff --reboot

comando de reinicio

el comando de reinicio indica al sistema que reinicie o reinicie. Aquí está la sintaxis del comando reboot :

// syntax of rebootreboot ...

El reinicio simplemente se puede usar para detener, apagar y reiniciar el sistema como :

  • // Halts the systemreboot --halt
  • // Powers off the systemreboot -p
  • // Reboots the system reboot
Las Etiquetas De Artículo :

Deja una respuesta

Tu dirección de correo electrónico no será publicada.

More: