Centos6.2清除内存中的系统缓存
Linux #centos #linux清除缓存2012-12-09 16:05
- 使用free – m命令查看内存使用情况
- 使用sync命令将存于 buffer 中的资料强制写入硬盘中
- 使用以下命令清除缓存,释放空间
- 再使用 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就吃不消了
echo 3 > /proc/sys/vm/drop_caches
total used free shared buffers cached Mem: 3832 1176 2655 0 0 169 -/+ buffers/cache: 1006 2825 Swap: 6015 0 6015
相关文章
- centos开机启动项设置命令:chkconfig 2012/12/07
- Rsync常见错误 2012/12/07
- Rsync服务器配置 2012/12/07
- Linux彻底删除文件的命令:shred 2012/12/04
- Linux中查看系统信息的命令 2012/11/23
- Linux下gzip压缩输出 2012/11/23
- linux下面的/proc文件创建和读写 2012/11/19
- Linux的守护进程 2012/11/16
- Linux中磁盘分区命令 2012/11/16
- Linux下用wine安装QQ 2012/11/16