Il modo semplice per riavviare il tuo sistema CentOS/Linux è usare il reboot
comando.
Per ulteriori opzioni, controlla i parametri:
root@web [~]# reboot --help
reboot [OPTIONS...] [ARG]
Reboot the system.
--help Show this help
--halt Halt the machine
-p --poweroff Switch off the machine
--reboot Reboot the machine
-f --force Force immediate halt/power-off/reboot
-w --wtmp-only Don't halt/power-off/reboot, just write wtmp record
-d --no-wtmp Don't write wtmp record
--no-wall Don't send wall message before halt/power-off/reboot
root@web [~]#
Devi essere loggato come root per spegnere il sistema operativo.
L'altro comando è shutdown
. È simile a reboot
.
Per riavviare la macchina con lo shutdown
comando, usa:
shutdown -r now
Per riavviare la macchina a un'ora specifica, utilizzare:
shutdown -r 02:30
Per riavviare la macchina dopo X minuti, utilizzare:
shutdown -r X
Per spegnere la macchina, utilizzare:
shutdown -h now
Per spegnere la macchina a un'ora specifica, utilizzare:
shutdown -h 02:30
Per spegnere la macchina dopo X minuti, utilizzare:
shutdown -h X
Per ulteriori opzioni, controlla i parametri per lo shutdown
comando:
root@web [~]# shutdown --help
shutdown [OPTIONS...] [TIME] [WALL...]
Shut down the system.
--help Show this help
-H --halt Halt the machine
-P --poweroff Power-off the machine
-r --reboot Reboot the machine
-h Equivalent to --poweroff, overridden by --halt
-k Don't halt/power-off/reboot, just send warnings
--no-wall Don't send wall message before halt/power-off/reboot
-c Cancel a pending shutdown
root@web [~]#
Per maggiori informazioni usa i comandi:
man reboot
man shutdown