2007. 11. 3. 21:22 Unix
전체 파일시스템 체크
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2366 - June 24, 2006
http://www.ugu.com/sui/ugu/show?tip.today
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
전체 파일시스템 체크
UNIX GURU UNIVERSE
UNIX HOT TIP
Unix Tip 2366 - June 24, 2006
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
전체 파일시스템 체크
많은 경우 파일 시스템이 너무 꽉 찬경우가 있다.
파일시스템에서 어떤 파일이 큰 파일인지 확인하기 위해서는 다음의 명령어를 사용할
수 있다.
find / -xdev -size +1024 -ls | sort -r +b
이 명령어로 너무 커진 파일을 정리할 수 있다.
@@@@@@@@@@@@@@@@@@@@[ 원문 ]@@@@@@@@@@@@@@@@@@@@
CHECKI FOR FULL FILESYSTEMS
Many times we have a file
systems which is too full.
To quickly find out which
are the large files in there
we could use:
find / -xdev -size +1024 -ls | sort -r +b
So we can clean up some
files which have grown too big.
Many times we have a file
systems which is too full.
To quickly find out which
are the large files in there
we could use:
find / -xdev -size +1024 -ls | sort -r +b
So we can clean up some
files which have grown too big.
반응형