标签:使用 需要 并且 shutdown 关机 fsck style 选项 nbsp
shutdown命令可以安全地关闭或重启Linux系统 需要特别说明的是该命令只能由超级用户使用。
命令格式:
shutdown [选项] [时间] [警告信息]
-k:并不真正关机,而只是发出警告信息给所有用户
-r:关机后立即重新启动。
-h:关机后不重新启动。
-f:快速关机,重启动时跳过检查Linux文件系统。
-F:关机时,强迫进行fsck动作。
时间:设定关机的时间。
警告信息:传送给所有使用者的警告信息。
例1:两分钟后重启系统,并向所有使用者发布“System will be down in 2 minutes”的信息。
# shutdown -r +2 "System will be down in 2 minutes“
例2:系统马上关机,并且不重新启动。
# shutdown – h now
例3:在23:00的时候关机。
# shutdown 23:00
标签:使用 需要 并且 shutdown 关机 fsck style 选项 nbsp
原文地址:http://www.cnblogs.com/laolarou/p/7043556.html