可以在終端輸入shutdown --help
或者man shutdown
來檢視:
@ubuntu:~$ shutdown --help
shutdown [options...] [time] [wall...]
shut down the system.
--help show this help
-h --halt halt the machine
-p --poweroff power-off the machine
-r --reboot reboot the machine
-h equivalent to --poweroff, overridden by --halt
-k don't halt/power-off/reboot, just send warnings
--no-wall don't send wall message before halt/power-off/reboot
-c cancel a pending shutdown
@ubuntu:~$
或者man shutdown
可以檢視更加詳細的操作說明。
除以上這些引數外,還有一些,共總結如下
-h: (halt)表示關閉裝置
-p: 關機
-h: 等同於-p
-k: 僅傳送警告訊息給登入使用者,不真正關機(僅僅root使用者可用)
-c: 取消關機
-t mins: 過幾分鐘關機,預設1分鐘。
-f:關機再次開機後,略過fsck磁碟檢查
-f:關機再次開機後,強制進行fsck磁碟檢查
halt和shutdown區別 如:
# 得到當前時間
@ubuntu:~$ date
tue jun 12
16:14:15 pdt 2018
# 十分鐘後關機
@ubuntu:~$ shutdown -t 10
shutdown scheduled for tue 2018-06-12
16:24:18 pdt, use 'shutdown -c' to cancel.
# 十分鐘後關機
@ubuntu:~$ shutdown -h 10
shutdown scheduled for tue 2018-06-12
16:24:31 pdt, use 'shutdown -c' to cancel.
# 在20:00關機
@ubuntu:~$ shutdown -t 20:00
shutdown scheduled for tue 2018-06-12
20:00:00 pdt, use 'shutdown -c' to cancel.
# 在20:00關機
@ubuntu:~$ shutdown -h 20:00
shutdown scheduled for tue 2018-06-12
20:00:00 pdt, use 'shutdown -c' to cancel.
# 不執行關機,僅傳送警告訊息,必須root使用者
@ubuntu:~$ shutdown -k now "system will power off"
must be root.
遺留問題
在執行shutdown -h
時,出現以下錯誤:
@ubuntu:~$ shutdown -h
failed to call scheduleshutdown in logind, proceeding with immediate shutdown: action org.freedesktop.login1.halt is not registered
@ubuntu:~$
這三個命令使用方式完全一樣,可以通過man reboot
或者reboot --help
可檢視具體的說明。
如:
$ reboot 重啟
$ reboot -p 重啟
$ poweroff --reboot 重啟
$ poweroff 關機
$ halt -p 關機
Linux Linux多個關機命令詳解
linux下的一些常用的關機 重啟命令有shutdown halt reboot 及init等,它們都可以達到重啟系統的目的,但每個命令的內部工作過程是不同的,通過本文的介紹,希望你可以更加靈活的運用各種關機命令。1 shutdown shutdown命令安全地將系統關機。有些使用者會使用直接斷掉電...
linux Linux下關機和重新啟動命令
date 2018.12.9 1 reboot命令 在linux命令中reboot是重新啟動,shutdown r now是立即停止然後重新啟動,都說他們兩個是一樣的,其實是有一定的區別的。2 shutdown命令 shutdown命令可以安全地關閉或重啟linux系統,它在系統關閉之前給系統上的所...
linux Linux下關機和重新啟動命令
date 2018.12.9 1 reboot命令 在linux命令中reboot是重新啟動,shutdown r now是立即停止然後重新啟動,都說他們兩個是一樣的,其實是有一定的區別的。2 shutdown命令 shutdown命令可以安全地關閉或重啟linux系統,它在系統關閉之前給系統上的所...