Skip to content

Instantly share code, notes, and snippets.

@petasittek
Created October 29, 2011 22:23
Show Gist options
  • Save petasittek/1325171 to your computer and use it in GitHub Desktop.
Save petasittek/1325171 to your computer and use it in GitHub Desktop.
Free page cache, inodes and dentries cache
# flush file system buffers (cache > disk)
sudo sync
# free page cache
sudo -s "echo 1 > /proc/sys/vm/drop_caches"
# free inodes and dentries cache
sudo -s "echo 2 > /proc/sys/vm/drop_caches"
# free page cache, inodes and dentries cache
sudo -s "echo 3 > /proc/sys/vm/drop_caches"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment