2012.06.01 07:09
리눅스 메모리 캐쉬삭제
리눅스에 메모리가 꽉차 캐쉬를 지우고 싶을때 리부팅하지 않고
캐쉬를 지울수 있다.
우선 메모리 확인 -m은 메가바이트 단위로 보여준다.
# free -m
그럼 캐쉬 삭제는 echo 명령어를 사용하면 된다.
To free pagecache:
# echo 1 > /proc/sys/vm/drop_caches
To free dentries and inodes:
# echo 2 > /proc/sys/vm/drop_caches
To free pagecache, dentries and inodes:
# echo 3 > /proc/sys/vm/drop_caches