shutdown命令:关闭或重启Linux系统
shutdown命令功能描述
使用shutdown命令可以安全地关闭或重启Linux系统。
在系统关机前使用shutdown命令,系统管理员会通知一条警告信息给所有登录的用户,告诉他们系统将要关闭,并且login进程会被冻结,即新的用户不能再登录。
直接关机或延迟一定的时间再关机都是可能的,还可能重启。
shutdown命令还允许用户指定一个时间参数,该参数可以是一个精确的时间,也可以是从现在开始的一个时间段。精确时间的格式是hh:mm,表示小时和分钟,时间段由“+”和分钟数表示。
shutdown命令语法
shutdown [选项] [时间] [警告信息]
选项含义:
命令中各选项的含义如下所示:
shutdown命令示例
立即关闭计算机系统
[root@deepinout ~]# shutdown -h now
定时45分钟之后关闭计算机系统
[root@deepinout ~]# shutdown -h +45
Broadcast message from root@rhel (/dev/pts/1) at 1:08 ...
The system is going down for halt in 45 minutes!
立即重新启动计算机系统,并发出警告信息
[root@deepinout ~]# shutdown -r now "system will be reboot now."
Broadcast message from root@rhel (/dev/pts/1) at 1:08 ...
The system is going down for reboot NOW!
system will be reboot now.
定时在1点38分重新启动计算机系统
[root@deepinout ~]# shutdown -r 01:38
Broadcast message from root@rhel (/dev/pts/0) at 1:37 ...
The system is going down for reboot in 1 minute!