标签:shutdown
shutdown 几个命令:
shutdown -r now # 立刻重启系统
shutdown -r +3 # 三分钟后重启系统
shutdown -h now # 立刻关机
shutdown -c # 撤销关机操作
shutdown -k now # 发送‘立即关机‘提示,但实际上不执行关机操作
shutdown -k +3 # 发送‘3分钟后关机‘提示,但实际上不执行关机操作
poweroff # 关机
halt # 关机
init 0 # 关机
init 6 # 重启
reboot # 重启
标签:shutdown
原文地址:http://lee90.blog.51cto.com/10414478/1685024