码迷,mamicode.com
首页 > 系统相关 > 详细

Linux 关机/重启/注销命令

时间:2016-07-24 07:10:34      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:linux 命令:shutdown、halt、poweroff、init、reboot、logout、exit

  • 关机

shutdown -h 0       #<==O秒后关机
shutdown -h now     #<==现在关机
shutdown -h 10      #<==10分钟后关机
shutdown -h 23:20   #<==23:20分关机 
shutdown -c         #<==取消shutdown关机命令
init 0              #<==立马关机(切换运行级别为0,推荐使用)
halt                #<==立马关机
poweroff            #<==立马关机
  • 重启

shutdown -r now     #<==现在重启
shutdown -r 23:20 & #<==23:20分重启,加&符号代表把该命令转到后台处理
reboot              #<==立马重启(推荐使用)
init 6              #<==立马重启(切换运行级别为6,推荐使用)
  • 注销

logout              #<==立马注销
exit                #<==立马注销
在SecureCRT软件中,按快捷键:Ctrl + d    #<==推荐使用


本文出自 “陈发哥007” 博客,请务必保留此出处http://chenfage.blog.51cto.com/8804946/1829193

Linux 关机/重启/注销命令

标签:linux 命令:shutdown、halt、poweroff、init、reboot、logout、exit

原文地址:http://chenfage.blog.51cto.com/8804946/1829193

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!