Linux常用关机重启命令

# shutdown -h 10       //计算机将在10分钟后 关机,且会显示在登录用户的当前屏幕中
# shutdown -h now    //立即 关机
# shutdown -h 20:25 //系统会 在20:25关机
# shutdown -h +10    //10分钟后 关机
# shutdown -I now    //立即重启
# shutdown -I +10    //10分钟后重启
# reboot                   //重启, 等同于shutdown -r
# halt       //关闭系统, 等同于shutdown -h now和poweroff

猜你喜欢

转载自www.cnblogs.com/view666/p/10445831.html