서버 내 용량 조회 시
df -h
현 디렉토리 내 폴더 용량 조회 시
du -sh *
-s : summarize
-h : human-readable
-c : check more than one directory and see the total
하루 지난 파일 제거
# 새벽 3시에 실행
0 3 * * * find /var/log -type f -mtime +1 -exec rm -f {} \;
# 5분마다 실행
*/5 * * * * find /var/log -type f -mtime +1 -exec rm -f {} \;
참고 >
[Linux] 파일 및 디렉토리(directory) 용량 확인하기
반응형
'서버 > 터미널' 카테고리의 다른 글
/dev/null, 1>/dev/null, 2>/dev/null (0) | 2023.07.02 |
---|---|
terminal. 명령어 history (0) | 2022.05.08 |
terminal. 명령어 형식 (0) | 2022.05.01 |
terminal. 자주 쓰는 명령어 (0) | 2021.10.07 |
terminal. 특정포트에서 사용중인 프로세스 확인/종료 (mac/window) (0) | 2021.10.07 |