Linux 关机、取消关机、重启
linux-dash
A beautiful web dashboard for Linux
项目地址:https://gitcode.com/gh_mirrors/li/linux-dash
免费下载资源
·
1、将数据从内存同步到硬盘
sync
注意:不管是重启系统还是关闭系统,首先要运行 sync 命令,把内存中的数据写到磁盘中!!!
2、关机
shutdown 关机指令,你可以man shutdown 来看一下帮助文档。例如你可以运行如下命令关机:
shutdown –h 10 ‘关机提示信息’ 计算机将在10分钟后关机,并且在关机前显示关机提示信息
shutdown -h 多长时间(以分钟为单位) 计算机将在多少分钟后关机
shutdown –h now 立马关机
shutdown –h 20:25 系统会在今天20:25关机
shutdown –h +10 十分钟后关机
reboot 就是重启,等同于 shutdown –r now
halt 关闭系统,等同于shutdown –h now 和 poweroff
3、取消关机
shutdown -c
4、重启
shutdown –r now 系统立马重启
shutdown -r09:35 在 09:35am 重启机器
shutdown –r +10 系统十分钟后重启
shutdown –r 10 系统十分钟后重启
reboot 系统立即重启,等同于 shutdown –r now
5、halt 命令通知硬件来停止所有的 CPU 功能,但是仍然保持通电。你可以用它使系统处于低层维护状态。注意在有些情况会它会完全关闭系统。
halt 停止机器
halt -p 关闭机器
halt --reboot 重启机器
6、使用管理工具 systemctl 关机
有个名为 init 的指令,这个指令可以切换不同的执行等级~ 执行等级共有 0~6 七个,其中 0 就是关机、6 就是重新启动等等。不过,这个 init 目前只是一个兼容模式而已~ 所以在 CentOS 7 当中,虽然你依旧可以使用『 init 0 』来关机,但是那已经跟所谓的『执行等级』无关了!
那目前系统中所有服务的管理是使用哪个指令呢?那就是 systemctl 啦!这个指令相当的复杂!我们会在很后面系统管理员部份才讲的到! 目前你只要学习 systemctl 当中与关机有关的部份即可。要注意,上面谈到的 halt, poweroff, reboot, shutdown 等等,其实都是呼叫这个 systemctl 指令的喔! 这个指令跟关机有关的语法如下:
[root@study ~]# systemctl [指令]
指令项目包括如下:
halt 进入系统停止的模式,屏幕可能会保留一些讯息,这与你的电源管理模式有关
poweroff 进入系统关机模式,直接关机没有提供电力喔!
reboot 直接重新启动
suspend 进入休眠模式
[root@study ~]# systemctl reboot # 系统重新启动
[root@study ~]# systemctl poweroff # 系统关机
[root@study ~]# systemctl --help # 查看Systemctl支持的指令与参数等
GitHub 加速计划 / li / linux-dash
10.39 K
1.2 K
下载
A beautiful web dashboard for Linux
最近提交(Master分支:2 个月前 )
186a802e
added ecosystem file for PM2 4 年前
5def40a3
Add host customization support for the NodeJS version 4 年前
更多推荐
已为社区贡献17条内容
所有评论(0)