功能:系統關閉指令
格式:shutdown [-cffhknr(引數名稱)] [-t 秒數] 時間 [警告資訊]
快速掌握:
事件
命令
晚上11點定時關機
shutdown -h 23:00; shutdown 23:00
1小時後關機
shutdown -h +60; shutdown -h 60; shutdown +60; shutdown 60
立刻關機
shutdown -h now
立刻重啟
shutdown -r now
取消關機
shutdown -c
值得注意的是,當執行乙個如「shutdown -h 11:10」的命令時,只要按「ctrl+c」鍵就可以中斷關機的命令。若是執行如「shutdown -h 11:10 & 」 的 命 令 將 shutdown轉到後台時,則需要使用shutdown -c將前乙個shutdown命令取消。
linux程式設計中close與shutdown的區別
1.close 函式 cpp view plain copy print?font size 13px include intclose intsockfd 返回成功為0,出錯為 1.close 乙個套接字的預設行為是把套接字標記為已關閉,然後立即返回到呼叫程序,該套接字描述符不能再由呼叫程序使用,...
linux指令筆記
tar 解包 tar zxvf filename.tar 打包 tar czvf filename.tar dirname gz命令 解壓1 gunzip filename.gz 解壓2 gzip d filename.gz 壓縮 gzip filename tar.gz 和 tgz 解壓 tar ...
Linux指令筆記2
使用命令 type 說明怎樣解釋乙個命令名 which 顯示會執行哪個可執行程式 help 得到 shell 內部命令的幫助文件 help 顯示用法資訊 man 顯示命令手冊頁 apropos 顯示一系列適合的命令 info 描述 alias 建立命令別名 alias name string 例項 ...