Centos6.2清除内存中的系统缓存


Linux #centos #linux清除缓存2012-12-09 16:05
  1. 使用free – m命令查看内存使用情况
  2.              total       used       free     shared    buffers     cached
    Mem:          3832       2716       1115          0         95       1483
    -/+ buffers/cache:       1137       2695
    Swap:         6015          0       6015
    

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

  3. 使用sync命令将存于 buffer 中的资料强制写入硬盘中
  4. 使用以下命令清除缓存,释放空间
  5. echo 3 > /proc/sys/vm/drop_caches
    
  6. 再使用 free -m 命令查看内存使用情况
  7.              total       used       free     shared    buffers     cached
    Mem:          3832       1176       2655          0          0        169
    -/+ buffers/cache:       1006       2825
    Swap:         6015          0       6015

相关文章

粤ICP备11097351号-1