详解 Linux中的关机和重启命令
这篇文章主要介绍了详解 Linux中的关机和重启命令的相关资料,希望通过此文能帮助到大家掌握这部分内容,需要的朋友可以参考下详解 Linux中的关机和重启命令
一 shutdown命令
shutdown [选项] 时间
选项:
-c:取消前一次关机命令
-h:关机
-r:重启
二 shutdown实战
# date
Sat Jul 15 09:28:35 CST 2017
# shutdown -r 05:30
Shutdown scheduled for Sun 2017-07-16 05:30:00 CST, use 'shutdown -c' to cancel.
# shutdown -r 05:30 &
4936
# Shutdown scheduled for Sun 2017-07-16 05:30:00 CST, use 'shutdown -c' to cancel.
Broadcast message from root@localhost.localdomain (Sat 2017-07-15 09:30:00 CST):
The system is going down for reboot at Sun 2017-07-16 05:30:00 CST!
^C
+ Done shutdown -r 05:30
# shutdown -c
Broadcast message from root@localhost.localdomain (Sat 2017-07-15 09:31:03 CST):
The system shutdown has been cancelled at Sat 2017-07-15 09:32:03 CST!
三 其他关机命令
halt
init 0
poweroff
四 其他重启命令
reboot
init 6
五 系统运行级别
六 查看系统运行级别以及修改系统的默认级别
runlevel
cat /etc/inittab
七 登出
logout
八 实战
#
# runlevel
N 5
# init 3
PolicyKit daemon disconnected from the bus.
We are no longer a registered authentication agent.
# runlevel
5 3
# logout
如有疑问请留言或者到本站社区交流讨论,以上就是Linux 中关机重启的命令详解,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
原文链接:http://cakin24.iteye.com/blog/2391507
http://www.zzvips.com/article/116977.html
页:
[1]