s-blog

CentOS 重启与关机(含定时)

ssssmy · 2026-06-05 · 1 min · CentOS

重启与定时重启

shutdown -r now        # 现在重启
shutdown -r 05:30      # 指定时间重启(会占用前台终端)
shutdown -r 05:30 &    # 放入后台
shutdown -c            # 取消定时重启
shutdown -r +10        # 10 分钟后重启

关机与定时关机

shutdown -h now        # 现在关机
shutdown -h 05:30      # 指定时间关机

原文链接:https://www.ssssmy.com/notes/centos-chong-qi-yu-guan-ji-han-ding-shi