在 CentOS 7 中,你可以使用以下命令来关机或重启系统:
立即关机:
shutdown -h now
或者
poweroff
定时关机(例如 10 分钟后关机):
shutdown -h +10
指定时间关机(例如在 23:00 关机):
shutdown -h 23:00
立即重启:
shutdown -r now
或者
reboot
定时重启(例如 10 分钟后重启):
shutdown -r +10
指定时间重启(例如在 23:00 重启):
shutdown -r 23:00
如果已经执行了 shutdown
命令但想取消:
shutdown -c
sudo
执行(例如 sudo shutdown -h now
)。shutdown
命令会向所有登录用户发送通知消息。poweroff
或 reboot
会立即执行操作,不会发送通知。bash
sudo shutdown -h now
bash
sudo reboot
如果你使用的是图形界面(如 GNOME),也可以通过右上角的电源按钮选择关机或重启。