Erkan Ceran

Linux üzerinde ram i boşaltmak

Centos

Linux ‘ta bir süre sonra ramde şişmeler yaşanabilir bunun çözümü için aşağıdaki bash scripti çalıştırabilirsiniz.

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
Exit mobile version