1
  • How can i clear all cache and buffered files in linux server (RHEL 5) ?
Kumar
  • 823
  • 3
  • 20
  • 43
  • @Kumar - you might find the following thread on cache useful: http://serverfault.com/questions/105606/deleting-linux-cached-ram – Patrick R Jan 30 '10 at 13:39
  • Someone may be able to suggest something else if you explained why you want to. vm/drop_caches wipes the OS's caches of files on disc; it has no semantic effect just kills performance, which makes it useful for performance testing and (mostly) nothing else. – MarkR Jan 31 '10 at 21:34

3 Answers3

3

in this post it is explained how to do it:

deleting linux cached ram

but be sure to read the complete post for why or why not to clear the caches.

Christian
  • 4,645
  • 2
  • 23
  • 27
2

As root: echo 3 > /proc/sys/vm/drop_caches

James
  • 7,553
  • 2
  • 24
  • 33
0

I had the same concerns about a heavy-handed cache on an embedded box running 2.6.15 (which does not have the proc file mentioned above). I did some experiments and found that one way to force the cache to clear is to create a ramdisk, fill it up with a huge temp file, and then delete the file. Works perfectly. Of course, what I proved was that Linux will indeed release the cache when absolutely ncessary. BTW changing swappiness to 0 or 100 had absolutely no observable effect on meminfo whatsoever.