>[success] # Linux-- 开关机命令 ~~~ shutdown 关机命令 1.1.-c 取消前一个关机命令 1.2.-h 关机 1.3.-r 重启 ~~~ * 重启语法 ~~~ 1.'shutdown -r参数' r --reboot Reboot the machine 1.1.'shutdown -r 10' #十分钟后重启shutdown-r⊙ 1.2.'shutdown -r 0' # 立刻重启 1.3.'shutdown -r now' # 立刻重启 2.'reboot' 重启 3.'init 6' 重启 ~~~ * 关机语法 ~~~ 1.'shutdown -h' --halt 停止的含义 1.1.'shutdown-h10' #十分钟后关机 1.2.'shutdown -h 0' #立即关机 1.3.'shutdown -h now' #立即关机 2.'poweroff' 或者 'halt' 关机 3.'init 0' 关机 ~~~