# 플러싱 하기 (반드시 먼저 실행할 것!!)
sync
# pagecache 비우기
sysctl -w vm.drop_caches=1
# dentries, inodes 비우기
sysctl -w vm.drop_caches=2
# pagecache, dentries, inodes 모두 비우기
sysctl -w vm.drop_caches=3
# pagecache, dentries, inodes 캐쉬 시작
sync
echo 0 > cat /proc/sys/vm/drop_caches
# crontab -e (매시간 마다 실행)
0 * * * * /usr/bin/sync && /usr/sbin/sysctl -w vm.drop_caches=3