CentOS筆記 關機

2021-08-20 10:57:31 字數 955 閱讀 6857

在linux領域內大多用在伺服器上,很少遇到關機的操作。畢竟伺服器上跑乙個服務是永無止境的,除非特殊情況下,不得已才會關機。

正確的關機流程為:sync > shutdown > reboot > halt

關機指令為:shutdown ,你可以man shutdown 來看一下幫助文件。

例如你可以執行如下命令關機:

sync 

將資料由記憶體同步到硬碟中。

shutdown

關機指令,你可以

man shutdown

來看一下幫助文件。例如你可以執行如下命令關機:

shutdown –h

10『this

server will shutdown after

10mins

』這個命令告訴大家,計算機將在

10分鐘後關機,並且會顯示在登陸使用者的當前螢幕中。

shutdown

–h now

立馬關機

shutdown–h

20:25系統會在今天20:

25關機

shutdown–h

+10十分鐘後關機

shutdown

–r now

系統立馬重啟

shutdown–r

+10系統十分鐘後重啟

reboot

就是重啟,等同於

shutdown

–r now

halt

關閉系統,等同於

shutdown

–h now

和poweroff

最後總結一下,不管是重啟系統還是關閉系統,首先要執行 sync 命令,把記憶體中的資料寫到磁碟中。

關機的命令有 shutdown –h now halt poweroff 和init 0 , 重啟系統的命令有 shutdown –r now reboot init 6。

CentOS正確關機方法

1.觀察系統使用狀態 聯網狀態 netstat a 後台執行的程式 ps aux shutdown 2 the machine will shutdown sync 將記憶體中未寫入硬碟的資料寫入硬碟 reboot 重新啟動,加引數後可以實現halt,poweroff halt 指向reboot的鏈...

Centos重啟關機命令

1 reboot 普通重啟 2 shutdown r now 立刻重啟 root使用者使用 3 shutdown r 10 過10分鐘自動重啟 root使用者使用 4 shutdown r 20 35 在時間為20 35時候重啟 root使用者使用 如果是通過shutdown命令設定重啟的話,可以用...

centos7系統關機命令 Linux關機命令介紹

init init是所有程序的祖先 它的程序號始終為1 所以傳送term訊號給init會終止所有的使用者程序 守護程序等。shutdown 就是使用這種機制。init定義了8個執行級別 runlevel init 0為關機 init 1為重啟。關於init可以長篇大論 這裡就不再敘述。另外還有tel...