红联Linux门户
Linux帮助

Centos6.2清除系统缓存的步骤

发布时间:2015-08-26 10:47:50来源:linux网站作者:Moetech

1、使用free – m命令查看内存使用情况

total used free shared buffers cached
Mem: 3832 2716 1115 0 95 1483
-/+ buffers/cache: 1137 2695
Swap: 6015 0 6015

从上面可以看到内存中的缓存又1483M之多,幸亏我的内存是4G的,如果是2G就吃不消了


2、使用sync命令将存于 buffer 中的资料强制写入硬盘中


3、使用以下命令清除缓存,释放空间

echo 3 > /proc/sys/vm/drop_caches


4、再使用 free -m 命令查看内存使用情况

total used free shared buffers cached
Mem: 3832 1176 2655 0 0 169
-/+ buffers/cache: 1006 2825
Swap: 6015 0 6015


好了,就上面的步骤就可以了,其实最终要的还是第三步,有时候在linux下看了电影或者下载了文件后缓存奇高,现在又办法解决了。


Ubuntu中清除软件包的本地缓存:http://www.linuxdiyf.com/linux/11554.html

Ubuntu Kylin系统中:闲话手动清理缓存:http://www.linuxdiyf.com/linux/11146.html

Linux下squid手动清除缓存:http://www.linuxdiyf.com/linux/7289.html

清除Linux缓存:http://www.linuxdiyf.com/linux/4198.html