您的当前位置:首页linux系统shutdown命令小结(史上最全)

linux系统shutdown命令小结(史上最全)

2022-04-09 来源:爱问旅游网
linux系统shutdown命令⼩结(史上最全)

命令语法:

/sbin/shutdown [-t sec] [-arkhncfFHP] time [warning-message]

命令参数:

参数-a-c-f-F-h-k-n-r-t-w

长参数 --help

描叙

Use /etc/shutdown.allow.

中断关机:当执⾏\"shutdown -h 12:00\"指令时,只要按+键就可以中断关机的指令重新启动时不进⾏磁盘检测(fsck)重新启动时进⾏磁盘检测(fsck)关闭电源

模拟关机(不是真的关机),只是向登录者发送警告信息出去!不调⽤init进程进⾏关机,⽽是强⾏关机

关闭系统然后重新启动,类似于Windows平台restart延迟关机的时间

仅做测试,并不真的将系统重新开机,只会把重开机的数据写⼊/var/log⽬录下的wtmp记录⽂件

显⽰命令在线帮助

⽰例:

1:马上关闭Linux系统,其中 now 相当于时间为 0 的状态

[root@db-server ~]# shutdown -h now

2:系统2分钟后重新启动,其中+m表⽰⼏分钟后关机或开机。

[root@db-server ~]# shutdown -r +2

3:设置系统在那个时间点关机

[root@db-server ~]# shutdown -h 12:30或后台执⾏

[root@db-server ~]# shutdown -h 12:30 &

最好是使⽤命令&将关机命令⾄于后台处理。不影响当前其它操作。

设置多久时间后执⾏shutdown命令。时间参数有hh:mm或+m两种模式。hh:mm格式表⽰在⼏点⼏分执⾏shutdown命令。例如

“shutdown 10:45”表⽰将在10:45执⾏shutdown.+m表⽰m分钟后执⾏shutdown.⽐较特别的⽤法是以now表⽰⽴即执⾏shutdown. 值得注意的是这部分参数不能省略。另外,需要注意如果现在已经22:30,你执⾏了shutdown -h 22:00 & 那么第⼆天才会关机。

4:查看后台是否执⾏shutdown命令

[root@db-server ~]# jobs

[1]+ Running shutdown -h 08:00 &

5:取消shutdown命令执⾏

执⾏了下⾯命令让Linux在12:30关机,但是如果发现这个时间点不合适,那么可以使⽤CTRL+C取消。

[root@db-server ~]# shutdown -h 12:30Shutdown cancelled.[root@db-server ~]#

也可以在另外⼀个命令窗⼝执⾏下⾯命令[root@db-server ~]# shutdown -c

6:向所有登录的⽤户发出信息

[root@db-server ~]# shutdown -k \"now\"

Broadcast message from root (pts/2) (Sat Jan 10 20:09:14 2015):The system is going down to maintenance mode NOW!Shutdown cancelled.

另外登录的会话窗⼝会收到如下信息

[root@db-server ~]# [root@db-server ~]#

Broadcast message from root (pts/2) (Sat Jan 10 20:11:34 2015):The system is going down to maintenance mode NOW!

⼀般使⽤下⾯语法,如下所⽰

[root@db-server ~]# shutdown -k now \"The Server will shutdown now Broadcast message from root (pts/1) (Sat Jan 10 20:14:54 2015):The Server will shutdown now

The system is going down to maintenance mode NOW!Shutdown cancelled.

7:重新启动时不进⾏磁盘检测

[root@db-server ~]# shutdown -fr now

Broadcast message from root (pts/1) (Sat Jan 10 20:23:59 2015): The system is going down for reboot NOW!

8:在多少秒后关闭系统并给⽤户发送提⽰信息

[root@db-server ~]# shutdown -t 10 -h now \"System will shutdown 10 sencond later\" Broadcast message from root (pts/1) (Sat Jan 10 20:33:36 2015): System will shutdown 10 sencond later

The system is going down for system halt NOW!

因篇幅问题不能全部显示,请点此查看更多更全内容