개발관련/Linux

리눅스에서 파일과 디렉토리의 크기를 확인하는 방법

Rateye 2021. 6. 6. 10:39
728x90
반응형
질문 : 리눅스에서 파일과 디렉토리의 크기를 어떻게 볼 수 있습니까?

Linux에서 파일 및 디렉토리의 크기를 어떻게 볼 수 있습니까? df -m 사용하면 최상위 수준의 모든 디렉토리 크기가 표시되지만 디렉토리 내의 디렉토리 및 파일의 경우 크기를 어떻게 확인합니까?

답변

ls 명령을 사용하고 디렉토리에는 du 명령을 사용하십시오.

파일 크기 확인

ls -l filename   #Displays Size of the specified file
ls -l *          #Displays Size of All the files in the current directory
ls -al *         #Displays Size of All the files including hidden files in the current directory
ls -al dir/      #Displays Size of All the files including hidden files in the 'dir' directory

ls 명령은 디렉토리의 실제 크기를 나열하지 않습니다 ( 왜? ). 따라서 우리는 이러한 목적으로 du

디렉토리 크기 확인

du -sh directory_name    #Gives you the summarized(-s) size of the directory in human readable(-h) format
du -bsh *                #Gives you the apparent(-b) summarized(-s) size of all the files and directories in the current directory in human readable(-h) format

위 명령 (예 : ls -lh * 또는 du -sh -h 옵션을 포함하면 사람이 읽을 수있는 형식 ( kb , mb , gb , ...)으로 크기가 제공됩니다.

자세한 내용은 man lsman du

출처 : https://stackoverflow.com/questions/11720079/how-can-i-see-the-size-of-files-and-directories-in-linux
728x90
반응형