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表示立即重啟,效果等同於shutdown -r now
poweroff表示立即關機,效果等同於shutdown -h now,在多用戶模式下(Run Level 3)不建議使用
halt不理會目前系統狀況下,進行硬件關機,一般不建議使用