Clearing caches from memory
From version 2.6.16 Linux kernel has a tunable parameter named /proc/sys/vm/drop_caches
If you want to force to clear pagecaches from memory use:
echo 1 > /proc/sys/vm/drop_caches
If you want to clear dentry and inode caches from memory:
echo 2 > /proc/sys/vm/drop_caches
and if you want to clear both of the pagecaches and dentry and inode caches just use:
echo 3 > /proc/sys/vm/drop_caches
In order to make sure all cached objects are freed you must execute the sync command first.
Читайте також:
- Upgrade postgresql-8.3 to postgresql-9.0
- How To quick generate openssl certificate signing request
- How To capture video from tv-tuner card via mencoder
- /usr/bin/ld: cannot find -lstdc++ Debian libreadline5-dev package bug
- Howto install decklink driver of blackmagicdesign on gentoo linux
- RTL SDR on Mac OS X
- Wrong charset, conversion from `utf-8' to `windows-1251' is not allowed chroot
- debian встановлення adobe flash player 10 64bit iceweasel (firefox)
- bash history - відображення дати і часу для кожної команди
- MemcachedKeyLengthError: Key length is > 250
