터미널에서 디렉토리(폴더) 용량 확인 방법을 소개합니다.
1. du -sh
다음 명령어는 파일을 제외한 디렉토리의 크기만 출력합니다.
$ du -sh static
11M static
옵션에 대한 설명은 다음과 같습니다.
-s
: 파일을 제외한 디렉토리 크기만 출력-h
: 사람이 읽기 편한 용량 단위로 출력
-h
대신에 다음 명령어로 출력되는 단위를 변경할 수 있습니다.
-k
: KB로 출력-m
: MB로 출력
$ du -sm static
11 static
$ du -sk static
10492 static
du -h
파일과 디렉토리 용량이 모두 출력되고, 크기는 읽기 편한 단위로 출력
$ du -h static
2.1M static/posts/android-jetpack-paging
7.0M static/posts/android-adaptive-icon
516K static/posts/autosizing-textviews
9.6M static/posts
8.0K static/assets/js
152K static/assets/old-icon
152K static/assets/icon
420K static/assets/css
736K static/assets
11M static
du -s
파일을 제외한 디렉토리의 용량만 출력, 단위는 KB
$ du -s static
10492 static
2. du -h --max-depth=
--max-depth=1
는 디렉토리의 파일 용량을 모두 출력할 때, 하위 1개 depth에 해당하는 파일들만 출력하라는 명령어입니다.
아래와 같이 static 폴더의 하위 1개 디렉토리까지만 출력되었습니다.
$ du -h static --max-depth=1
9.6M static/posts
736K static/assets
11M static
--max-depth=<depth>
옵션으로 depth를 조절할 수 있습니다.
Loading script...
Related Posts
- Ubuntu/Linux - 특정 이름이 들어간 파일 모두 찾고 삭제하기
- Ubuntu/Linux - 특정 이름이 포함된 프로세스 모두 종료
- Ubuntu/Linux - 사용자 계정 이름 확인 (id, whoami)
- Ubuntu/Linux - E: unable to locate package 에러 해결
- Ubuntu 22.04/20.04 - Yarn 설치 방법
- Linux/Ubuntu - grep 명령어로 문자열 검색
- Linux/Ubuntu - 터미널에서 seq로 명령어 N회 반복
- Linux/Ubuntu - wc 명령어로 Line(줄) 개수 세기
- bash: pip: command not found 문제 해결 (Linux/Ubuntu)
- Ubuntu 22.04 - Swap 메모리 늘리기
- Linux - 파일이 수정된 날짜/시간 확인 방법
- Linux - 파일, 디렉토리 삭제 명령어(rm -rf, rmdir)
- 우분투 22.04 - deb 파일 설치하기
- Ubuntu 20.04 - OpenJDK 11 설치, 삭제
- Linux - ps 명령어로 실행 중인 프로세스(PID) 확인
- Ubuntu 20.04 - SSH 설치와 접속 방법
- Ubuntu에서 PPA 저장소 추가, 제거 방법
- Ubuntu 22.04 - Brave 브라우저 설치
- Ubuntu 22.04 - 프로스트와이어(FrostWire) 설치
- Ubuntu 22.04 - Remmina 설치 방법
- Ubuntu 22.04 - Rust 설치하기
- Ubuntu 22.04 - 텔레그램 설치하기
- Ubuntu - Deluge 토렌트 클라이언트 설치
- Ubuntu JDK 17 (OpenJDK) 설치, 삭제
- Ubuntu 20.04 스팀(Steam) 설치 방법
- Ubuntu에서 draw.io 설치하는 방법
- 우분투에 VMware 설치하기
- [Ubuntu] VMware에서 Windows 11 설치
- Vi/Vim에서 1줄 또는 여러줄 삭제 방법
- Vi/Vim에서 라인 번호 표시하 기
- 우분투에서 rar 압축, 압축 풀기
- Ubuntu에서 구글 드라이브 사용하기 (로컬 폴더에 마운트)
- [Ubuntu] apt-cache search, 설치 가능한 패키지 검색
- Ubuntu - DNS 캐시 삭제 방법
- Ubuntu에서 사용할 수 있는 Text Editor 소개