Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[20211225] Linux - du(Memory check) #238

Open
JuHyun419 opened this issue Dec 25, 2021 · 0 comments
Open

[20211225] Linux - du(Memory check) #238

JuHyun419 opened this issue Dec 25, 2021 · 0 comments
Labels

Comments

@JuHyun419
Copy link
Owner

리눅스 디렉토리 용량 확인(du)

Option

  • -a(all) : 디렉토리가 아닌 모든 파일에 대한 정보 출력
  • -k : 결과 값을 KB 단위로 출력(default)
  • -h(human-readable) : 사용자가 이해하기 쉬운 용량의 단위(KB, MB, GB)를 표시함
  • -s(summarize) : 사용량의 총 합계만 출력함
/* --max-depth 옵션
0 : 현재 위치의 디렉토리
1 : 하위 디렉토리
2 : 하위 디렉토리/하위 디렉토리
*/
// 하위 depth = 1 디렉토리까지 용량 확인
$ du -h --max-depth=1 


// 하위 디렉토리 + 현재 목록의 파일들까지 함께 용량 확인
$ du -sh *


// 위 명령어에 용량이 작은 순으로 정렬
$ du -sh * | sort -hs


// 위 명령어에 용량이 큰 순으로 정렬
$ du -sh * | sort -hr


// logs 디렉토리의 용량 확인
$ du -sh logs


// 사용량을 단위(K, M, G, T)별로 보여줌
$ du -h


// GB이상의 디렉토리만 표시
$ du -sh * | grep [0-9]G


// 표시 차이
$ du -s // 5463790
$ du -sh // 5.3G
@JuHyun419 JuHyun419 changed the title [20211225] 리눅스 du [20211225] Linux - du(Memory check) Dec 25, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant