du -h -d 1 / | sort -rh
지정 디렉토리를 제외하려면 –exclude=volume1 이런 식으로 뒤에 추가하면 된다.
du -h -d 1 --exclude=volume1 --exclude=volume2 --exclude=volume3 / | sort -rh
위와 같이 루트에서 찾은 후, 제일 용량이 많은 폴더에 들어가 다시 아래와 같이 폴더 부분만 변경해서 검색한다.
du -h -d 1 --exclude=volume1 --exclude=volume2 --exclude=volume3 /usr/ | sort -rh | head -10
현재 폴더의 파일 용량을 보고 싶으면 아래의 명령어도 활용한다.
ls -alSh