在Centos 7系统中关机的命令是”shutdown”。该命令可以使用多个选项来指定关机类型,关机时间和要显示给用户的信息。
shutdown 命令
语法:
shutdown [OPTION]... TIME [MESSAGE]
选项:
- -r, –reboot 重新启动系统
- -h, –halt 关闭系统
- -H, –halt 关闭系统(不等待活动进程)
- -P, –poweroff 关闭电源
TIME:
- now 立即关机
- +m 在m分钟后关机
- hh:mm 在指定的时间关机
- yyyy-mm-dd hh:mm 在指定的日期和时间关机
MESSAGE:
- 一条将在关机时显示给用户的消息
例:
shutdown -r +10 "The system will reboot in 10 minutes for maintenance"
将在10分钟后重新启动系统,并显示给用户的消息为”The system will reboot in 10 minutes for maintenance”shutdown -h now
将立即关闭系统
注意:在关机之前,系统会发送一条消息警告用户关机,并允许他们保存工作。
shutdown命令应用示例
- 立即关机:
shutdown -h now
- 重新启动:
shutdown -r now
- 在10分钟后关机:
shutdown -h +10
- 在明天上午9点关机:
shutdown -h 09:00 tomorrow
- 在2022年12月31日晚上11点关机:
shutdown -h 23:00 2022-12-31
- 重新启动并显示给用户的消息为”The system will reboot in 10 minutes for maintenance”:
shutdown -r +10 "The system will reboot in 10 minutes for maintenance"
- 在5分钟后关闭电源:
shutdown -P +5
- 立即关闭电源:
shutdown -P now
请注意,在使用shutdown命令之前请确保已经保存好所有的工作,因为在关机后所有的工作将会丢失。
作者:牛奇网,本站文章均为辛苦原创,在此严正声明,本站内容严禁采集转载,面斥不雅请好自为之,本文网址:https://www.niuqi360.com/linux/centos7%e4%b8%ad%e5%a6%82%e4%bd%95%e5%85%b3%e6%9c%ba%ef%bc%9f/