shutdown 命令详解

| 选择喜欢的代码风格  

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

shutdown 命令安装:


-bash: shutdown: command not found

#Debian
apt-get install sysvinit

#Ubuntu
apt-get install upstart-sysv

#Arch Linux
pacman -S systemd-sysvcompat

#Kali Linux
apt-get install runit-init

#CentOS
yum install systemd

#Fedora
dnf install systemd

#Raspbian
apt-get install upstart

shutdown 命令补充说明:


shutdown 命令用来系统关机命令。shutdown 指令可以关闭所有程序,并依用户的需要,进行重新开机或关机的动作。

shutdown 命令语法:


shutdown [-akrhPHfFnc] [-t sec] time [message]

shutdown 命令选项:


-c:当执行“shutdown -h 11:50”指令时,只要按+键就可以中断关机的指令;
-f:重新启动时不执行fsck;
-F:重新启动时执行fsck;
-h:将系统关机;
-k:只是送出信息给所有用户,但不会实际关机;
-n:不调用init程序进行关机,而由shutdown自己进行;
-r:shutdown之后重新启动;
-t<秒数>:送出警告信息和删除信息之间要延迟多少秒。

shutdown 命令参数:


[时间]:设置多久时间后执行shutdown指令;
[警告信息]:要传送给所有登入用户的信息。

shutdown 命令涉及的文件:


/fastboot
/etc/inittab
/etc/init.d/halt
/etc/init.d/reboot
/etc/shutdown.allow

shutdown 命令实例:


shutdown 指定现在立刻关机:

shutdown -h now

shutdown 指定 5 分钟后关机,同时送出警告信息给登入用户:

shutdown +5 "System will shutdown after 5 minutes. https://commandnotfound.cn .."

shutdown 立即重启:

shutdown -r now

shutdown 5 分钟后重新启动:

shutdown -r +5 &

shutdown 下午1:00关机(使用24小时制):

shutdown -h 13:00

shutdown 取消挂起的关闭/重新启动操作:

shutdown -c

shutdown 命令扩展阅读:




shutdown 命令评论