Skip to content

Instantly share code, notes, and snippets.

@sursir
Created January 25, 2019 09:15
Show Gist options
  • Save sursir/08a39cdd1dab76415cf07462bc1ff15f to your computer and use it in GitHub Desktop.
Save sursir/08a39cdd1dab76415cf07462bc1ff15f to your computer and use it in GitHub Desktop.
linux memory free cache pagecache dentries inodes

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment