Linux 檔案大小查詢排序
阿新 • • 發佈:2018-11-12
du -sh 檔案大小查詢;
1、當前目錄的大小; du -sh | sort 2、當前 目錄下的檔案大小; ls -lsh 3、當前目錄 下的檔案大小排序; du -sh * |sort -n 4、查詢當前的最大檔案; du -sh |sort -nr |head 5、同一目錄下檔案 最大檔案; du -sh --max-depth =1 /var/logfind 查詢檔案 find 用法;
find / -name httpd.conf (在根目錄查詢) find / -amin -10 # 查詢在系統中最後10分鐘訪問的檔案 find/ -atime -2 # 查詢在系統中最後48小時訪問的檔案 find / -empty # 查詢在系統中為空的檔案或者資料夾 find / -group cat # 查詢在系統中屬於 groupcat的檔案 find / -mmin -5 # 查詢在系統中最後5分鐘裡修改過的檔案 find / -mtime -1 #查詢在系統中最後24小時裡修改過的檔案 find / -nouser #查詢在系統中屬於作廢使用者的檔案 find / -user fred #查詢在系統中屬於FRED這個使用者的檔案
find 示例:
1、以查詢 /home下最近兩天修改過的檔案 # find /home -type f -mtime -2mount 掛載;2、近3天建立的檔案log [[email protected]~]# find / -mtime -3 -name '*.log'
3、查詢3天之前的檔案; [[email protected]~]# find / -mtime +3 -name '*.log'
4、查詢大於1000K 的檔案 [[email protected]~]# find /opt/ -size +100000k find / -name httpd.conf (在根目錄查詢)
重新掛載; mount -o remount,rw /dev/vda9 /data