写在前面
关机
在linux领域内大多用在服务器上,很少遇到关机的操作。毕竟服务器上跑一个服务是永无止境的,除非特殊情况下,不得已才会关机 。
正确的关机流程为:sync > shutdown > reboot > halt
【1】基本语法:
(1)sync (功能描述:将数据由内存同步到硬盘中)
(2)shutdown [选项] 时间
选项:
-h:关机
-r:重启
(3)halt (功能描述:关闭系统,等同于shutdown -h now 和 poweroff)
(4)reboot (功能描述:就是重启,等同于 shutdown -r now)
【2】案例
(1)将数据由内存同步到硬盘中
[root@hadoop003 /]# sync
(2)计算机将在10分钟后关机,并且会显示在登录用户的当前屏幕中
[root@hadoop003 /]# shutdown -h 10 ‘This server will shutdown after 10 mins’
(3)立马关机
[root@hadoop003 /]# shutdown -h now
(4)系统立马重启
[root@hadoop003 /]# shutdown -r now
(5)重启(等同于 shutdown -r now)
[root@hadoop003 /]# reboot
(6)关机(等同于shutdown -h now 和 poweroff)
[root@hadoop003 /]# halt
(7)init 关机
[root@hadoop003 /]# init 0
(8)init 重启
[root@hadoop003 /]# init 6
注意:不管是重启系统还是关闭系统,首先要运行sync命令,把内存中的数据写到磁盘中。
网友评论