Linux125 리눅스 폴더별 용량 확인 리눅스 폴더별 용량 확인 1. du 라는 명령어를 사용 한다. - du 명령만으로는 출력보기가 쉽지 않음....ㅠㅠ - 보기 편한 option을 붙여준다. # du -h --max-depth=1 --max-depth=1 은 그 아래 디렉토리까지 위에서 1번째 까지만 출력 하라는 뜻... 2013. 12. 23. find 명령어 활용 ** 해당 폴더에 현재 시간 기준 수정이나 만든기점으로 부터 파일을 찾아내어 삭제 - find ./ -type f -mtime +1 -name "test*.log" -exec rm -rf {} \;1. find : find 명령2. ./ : 현재 디렉토리에서3. -type f : 타입이 파일 - 디렉토리인 경우 : -type d4. mtime +1 : 수정시간으로부터 1일 - 만든시간은 ctime : creat time5. -name "test*.log" : 파일이름이 test로 시작하는 log파일 모든것6. -exec : 실행하겠다.7. rm -rf {} : find 명령으로 찾아낸 출력값을 삭제8. \; : 명령어 끝 2013. 12. 20. configure: error: freetype.h not found. configure: error: freetype.h not found. - configure 중 해당 라이브러리 없어서 뜨는 에러.- 아래의 라이브러리 설치yum install freetype-devel 2013. 12. 19. configure: error: libjpeg.(a|so) not found. configure: error: libpng.(a|so) not found. configure: error: libjpeg.(a|so) not found.configure: error: libpng.(a|so) not found. - configure 중 해당 라이브러리가 없어 나는 에러- 아래의 라이브러리 설치yum install libjpeg-develyum install libpng-devel 해당 라이브러리 설치 후에도 에러가 발생하면 아래와 같이 설정64bit 운영체제에서 해결이 됨.ln-s /usr/lib64/libjpeg.so /usr/libln-s /usr/lib64/libpng.so /usr/lib 2013. 12. 19. 이전 1 ··· 24 25 26 27 28 29 30 ··· 32 다음