Skip to content

Instantly share code, notes, and snippets.

@j1cs
Last active August 29, 2015 14:17
Show Gist options
  • Save j1cs/f5b029f0cfcfefecac10 to your computer and use it in GitHub Desktop.
Save j1cs/f5b029f0cfcfefecac10 to your computer and use it in GitHub Desktop.
Libera los buffers de la ram
#!/bin/bash
# Flush file system buffers by executing
sync;
# free page cache
echo 1 > /proc/sys/vm/drop_caches;
# free dentries and inodes
echo 2 > /proc/sys/vm/drop_caches
# free page cache, 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