Skip to content

Instantly share code, notes, and snippets.

@matchy256
Created December 21, 2012 02:08
Show Gist options
  • Save matchy256/4350226 to your computer and use it in GitHub Desktop.
Save matchy256/4350226 to your computer and use it in GitHub Desktop.
Linux のスワップとかキャッシュとかをクリアする
#!/bin/sh
# swap clear
/sbin/swapoff -a && /sbin/swapon -a
# disk sync
/bin/sync
/bin/sync
/bin/sync
# page cache, dirty cache & inode clear
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