linux下查找占用较大空间的文件列表 2020年10月19日 使用find命令查找 sudo find / -size +10M -type f -print | xargs sudo du -sh | sort -rn -k 1 | more 如果某些正在写的文件被删除,而进程并未关闭或者重启,则空间依然占用,不会被释放 sudo lsof -n | grep deleted | sort -k7 -n