方法一:
查看/目录下,磁盘占用最高的5个文件
du -S /* | sort -rn | head -5
- -S, --separate-dirs for directories do not include size of subdirectories
- -n, --numeric-sort compare according to string numerical value
- -r, --reverse reverse the result of comparisons
方法二:
查看目录深度为1的目录占用空间情况
du -h --max-depth=1 |grep [TGM] |sort -nr
- -h, --human-readable print sizes in human readable format (e.g., 1K 234M 2G)
方法三:
查看占用率超过35%的挂载点
df -h | awk '$5 > 75 && NR>=2 {print $6}'