Linux關機與重啟的命令詳解
Linux有如下的關機和重啟命令:shutdown, reboot, halt, poweroff,那麼它們有什麼區別呢?
shutdown - 建議使用的命令
shutdown是最常用也是最安全的關機和重啟命令,它會在關機之前呼叫fsck檢查磁碟,其中-h和-r是最常用的引數:
-h:停止系統服務並關機
-r: 停止系統服務後重啟
下面看幾個例子:
shutdown -h now --立即關機
shutdown -h 10:53 --到10:53關機,如果該時間小於當前時間,則到隔天
shutdown -h +10 --10分鐘後自動關機
shutdown -r now --立即重啟
shutdown -r +30 'The System Will Reboot in 30 Mins' --30分鐘後重啟並併傳送通知給其它線上使用者
reboot
reboot表示立即重啟,效果等同於shutdown -r now
poweroff
poweroff表示立即關機,效果等同於shutdown -h now,在多使用者模式下(Run Level 3)不建議使用。
halt
不理會目前系統狀況下,進行硬體關機,一般不建議使用
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69957453/viewspace-2766841/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- Linux Centos7關機命令詳解及示例!LinuxCentOS
- 運維必收乾貨 | Linux關機命令和重啟命令有哪些?運維Linux
- 『學了就忘』Linux基礎命令 — 29、關機和重啟Linux
- Nginx啟動,重啟以及基本命令詳解!Nginx
- Centos6.7關機和重啟命令CentOS
- Linux檔案相關命令詳解(一)Linux
- Linux重啟命令介紹Linux
- Linux 常用的壓縮與解壓縮命令詳解Linux
- Linux at命令詳解Linux
- Linux的scp命令詳解Linux
- linux的zip命令詳解Linux
- Linux中程式崩潰及重啟的原因詳解!Linux
- 重啟和關閉 Linux 系統的 6 個終端命令Linux
- Linux最常用的5個重啟命令基本用法講解!Linux
- rocky linux 重啟網路卡命令Linux
- linux top 命令詳解Linux
- linux命令詳解:sortLinux
- linux top命令詳解Linux
- Linux screen 命令詳解Linux
- Linux find 命令詳解Linux
- Linux xargs 命令詳解Linux
- Linux sed 命令詳解Linux
- Linux awk 命令詳解Linux
- Linux iptables 命令詳解Linux
- Linux xattr 命令詳解Linux
- Linux locate 命令詳解Linux
- Linux netstat 命令詳解Linux
- Linux firewalld 命令詳解Linux
- Linux ss 命令詳解Linux
- Linux nc 命令詳解Linux
- Linux history 命令詳解Linux
- Linux sort 命令詳解Linux
- Linux diff命令詳解Linux
- 詳解Linux chkconfig命令Linux
- Linux chattr命令詳解Linux
- Linux命令top詳解Linux
- Linux umask 命令詳解Linux
- Linux常用軟體啟動、停止、重啟命令Linux