# 1.命令查看磁盘空间 df -h # 2.查看根目录下各个文件占用情况,max-depth表示目录的深度 du -ah --max-depth=1 / # 3.进入usr目录用find 命令找到大于100M文件 cd /usr && find . -size +100M