天天看點

Linux常用指令(日常記錄)

檔案大小

#從大到小查詢10條目前目錄下檔案
du -ah|sort -hr |head -10
           

防火牆相關

#設定開機啟用防火牆
systemctl enable firewalld.service
#設定開機禁用防火牆:
systemctl disable firewalld.service
#啟動防火牆
systemctl start firewalld
#關閉防火牆
systemctl stop firewalld
#檢查防火牆狀态
systemctl status firewalld
           

繼續閱讀