有这五种重启命令

2026-09-27

1、[root@localhost ~]# shutdown -r now,#重启, now是现在重启的意思 2、[root@localhost ~]# shutdown -r 05:30,#指定时间重启,但会占用前台终端 3、[root@localhost ~]# shutdown -r 05:30 &,#把定义重启命令放入后台,&是后台的意思 4、[root@localhost ~]# shutdown -c,//取消定时重启 5、[root@localhost ~]# shutdown...

阅读更多