GeeksforGeeks

Di seguito sono riportati gli usi tipici di halt, poweroff e reboot.

  1. halt : indica all’hardware di interrompere le funzioni della CPU.
  2. poweroff: indica al sistema di spegnersi.
  3. reboot: riavvia o riavvia il sistema.

I comandi sopra menzionati possono essere eseguiti solo da super user in quanto comportano le azioni per arrestare l’hardware del sistema. Se l’utente non è connesso come super user, il comando sudo può essere utilizzato per eseguire questi comandi.

Comando halt

Questo indica all’hardware di interrompere tutte le funzioni della CPU.

// syntax of halt commandhalt ...

L’arresto può essere utilizzato semplicemente per arrestare, spegnere e riavviare il sistema :

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

Applicazioni

  • Ciò consente all’utente di spegnere il sistema dalla riga di comando.
  • Utilizzando halt tutte le funzioni della CPU verranno interrotte e il sistema entrerà in uno stato in cui l’utente può eseguire una manutenzione di basso livello.

Comando poweroff

poweroff Invia un segnale ACPI che istruisce il sistema per spegnere. Ecco la sintassi del comando poweroff :

// syntax of poweroffpoweroff ...

Il poweroff semplicemente può essere usato per arrestare, lo spegnimento e il riavvio del sistema :

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

Comando reboot

il comando reboot indica il riavvio del sistema o riavvio. Ecco la sintassi del comando reboot :

// syntax of rebootreboot ...

Il riavvio può essere utilizzato semplicemente per arrestare, spegnere e riavviare il sistema come :

  • // Halts the systemreboot --halt
  • // Powers off the systemreboot -p
  • // Reboots the system reboot
Tag articolo:

Lascia un commento

Il tuo indirizzo email non sarà pubblicato.

More: