**注销/重启/关机**
logout # 注销
reboot # 重启系统: 需要管理员全新啊
shutdown # 关机: 需要管理员权限
shutdown -r now # 现在立即重启
shutdown -r +5 # 三分钟后重启
shutdown -r 12:12 #在12:12时将重启计算机
shutdown -h now # 现在立即关机
shutdown -h +5 “The System will shutdown after 3 minutes” # 提示使用者将在三分钟后关机
shutdown -h +5 # 5分钟后关机
shutdown -h 12:00 # 12点钟关机
shutdown -c # 取消关机操作
复制代码
原文地址:http://blog.51cto.com/13562606/2058745
时间: 2024-11-08 23:41:49