de mai jos sunt utilizări tipice ale halt, poweroff și reboot.
- halt : instruiește hardware-ul să oprească funcțiile procesorului.
- poweroff : instruiește sistemul să se oprească.
- reboot : repornește sau repornește sistemul.
comenzile menționate mai sus pot fi rulate numai de super user, deoarece acestea implică acțiunile de oprire a hardware-ului sistemului. Dacă utilizatorul nu este conectat ca super utilizator, atunci comanda sudo poate fi utilizată pentru a rula aceste comenzi.
comanda halt
aceasta instruiește hardware-ul să oprească toate funcțiile procesorului.
// syntax of halt commandhalt ...
halt pur și simplu poate fi folosit pentru a opri, poweroff și reporniți sistemul :
-
// Instructs hardware to stop CPU functions.halt
-
// power off the systemhalt -p
-
// reboots the system halt --reboot
Aplicații
- acest lucru permite utilizatorului să oprească sistemul din linia de comandă.
- folosind halt toate funcțiile CPU vor fi oprite și sistemul va intra într-o stare în care utilizatorul poate efectua întreținere la nivel scăzut.
comanda poweroff
poweroff trimite un semnal ACPI care instruiește sistemul să se oprească. Iată sintaxa comenzii poweroff :
// syntax of poweroffpoweroff ...
poweroff pur și simplu poate fi folosit pentru a opri, poweroff și reporniți sistemul ca :
-
// Powers off the systempoweroff
-
// Halts the systempoweroff --halt
-
// Reboots the system poweroff --reboot
comanda reboot
comanda reboot instruiește sistemul să repornească sau să repornească. Iată sintaxa comenzii reboot:
// syntax of rebootreboot ...
reboot pur și simplu poate fi folosit pentru a opri, poweroff și reporniți sistemul ca :
-
// Halts the systemreboot --halt
-
// Powers off the systemreboot -p
-
// Reboots the system reboot