這款軟件可以在用戶指定時間執(zhí)行關(guān)機(jī),重啟,注銷,休眠和關(guān)閉電源操作。小米路由器關(guān)機(jī)方法①:進(jìn)入小米路由器后臺管理關(guān)閉直接拔電源的方式linux命令,有可能導(dǎo)致小米路由器內(nèi)置硬盤損壞,因此①般不建議大家操作,而進(jìn)入小米路由器后臺關(guān)閉路由器,則成為很多朋友最傳統(tǒng)的方法,以下筆者也為大家詳細(xì)介紹下。6.2管線一旦出現(xiàn)位移過大或時,應(yīng)立即疏散操作人員及操作機(jī)械、切斷操作區(qū)域電源、水源,并立即匯報項目部主管人員。
使用 shutdown 命令關(guān)閉和重啟 Linux 系統(tǒng)
shutdown 命令用于斷電或重啟本地和遠(yuǎn)程的 Linux 機(jī)器。它為高效完成作業(yè)提供多個選項。如果使用了時間參數(shù),系統(tǒng)關(guān)閉的 5 分鐘之前,會創(chuàng)建 /run/nologin 文件,以確保后續(xù)的登錄會被拒絕。
通用語法如下:
# shutdown [OPTION] [TIME] [MESSAGE]
運(yùn)行下面的命令來立即關(guān)閉 Linux 機(jī)器。它會立刻殺死所有進(jìn)程,并關(guān)閉系統(tǒng):
# shutdown -h now
-h:如果不特指 -halt 選項,這等價于 -poweroff 選項。
另外我們可以使用帶有 -halt 選項的 shutdown 命令來立即關(guān)閉設(shè)備:
# shutdown --halt now
或者:
# shutdown -H now
-H, --halt:停止設(shè)備運(yùn)行。
另外我們可以使用帶有 poweroff 選項的 shutdown 命令來立即關(guān)閉設(shè)備:
# shutdown --poweroff now
或者:
# shutdown -P now
-P, --poweroff:切斷電源(默認(rèn))。
如果您沒有使用時間選項運(yùn)行下面的命令,它將會在一分鐘后執(zhí)行給出的命令:
# shutdown -h
Shutdown scheduled for THU 2018-11-01 06:42:31 EDT, use 'shutdown -c' to cancel.
其他的登錄用戶都能在中斷中看到如下的廣播消息:
Broadcast message from root@2daygeek.com (THU 2018-11-01 06:41:31 EDT):
The system is going down for power-off at THU 2018-11-01 06:42:31 EDT!
對于使用了 -halt 選項:
# shutdown -H
Shutdown scheduled for THU 2018-11-01 06:37:53 EDT, use 'shutdown -c' to cancel.
對于使用了 -poweroff 選項:
# shutdown -P
Shutdown scheduled for THU 2018-11-01 06:40:07 EDT, use 'shutdown -c' to cancel.
可以在您的終端上敲擊 shutdown -c 選項取消操作:
# shutdown -c
其他的登錄用戶都能在中斷中看到如下的廣播消息:
Broadcast message from root@vps.2daygeek.com (THU 2018-11-01 06:41:35 EDT):
The system shutdown has been cancelled at THU 2018-11-01 06:42:35 EDT!
添加時間參數(shù)linux命令,如果你想在 N 秒之后執(zhí)行關(guān)閉或重啟操作。這里,您可以為所有登錄用戶添加自定義廣播消息。例如,我們將在五分鐘后重啟設(shè)備: