Linux/Centos下清理内存和Cache方法

Linux/Centos下释放内存和缓存方法

$ free -m 

运行sync将dirty的内容写回硬盘
$ sync

通过修改proc系统的drop_caches清理free的cache
$ echo 3 > /proc/sys/vm/drop_caches
 
$ free -m

原文地址:https://www.cnblogs.com/emanlee/p/3552271.html