linux free
在Linux下查看内存我们一般用command free
[root@nonamelinux ~]# free
total used free shared buffers cached
Mem: 386024 377116 8908 0 21280 155468
-/+ buffers/cache: 200368 185656
Swap: 393552 0 393552
下面是对这些数值的解释:
第二行(mem): total:总计物理内存的大小。 used:已使用多大。 free:可用有多少。 Shared:多个进程共享的内存总额。 Buffers/cached:磁盘缓存的大小。
第三行(-/+ buffers/cached): used:已使用多大。 free:可用有多少。
第四行就不多解释了。
区别: 第二行(mem)的used/free与第三行(-/+ buffers/cache) used/free的区别。
这两个的区别在于使用的角度来看, 第一行是从OS的角度来看,因为对于OS,buffers/cached 都是属于被使用,所以他的可用内存是8908KB,已用内存是377116KB,其中包括,内核(OS)使用+Application(X,oracle,etc)使用的+buffers+cached.
第三行所指的是从应用程序角度来看,对于应用程序来说,buffers/cached 是等于可用的,因为buffer/cached是为了提高文件读取的性能,当应用程序需在用到内存的时候,buffer/cached会很快地被回收。 所以从应用程序的角度来说,可用内存=系统free( memory+buffers+cached.) 如上例: 185656 = 8908+21280+155468 接下来解释什么时候内存会被交换,以及按什么方交换。 当可用内存少于额定值的时候,就会开会进行交换.
- buffers/cache 200368 =377116(used) -21280(buffers) -155468(cached)
+ buffers/cache 185656 = 8908(free) +21280(buffers)+155468(cached)
Memory Usage and Page Cache
buffer是缓冲区,简单地说,是由于io速度不匹配用到的暂存区,而cache是缓存,是由于需要多次访问,为了加快访问而放到更快的存储(如内存)中的那部分数据。buffer中的数据只使用一次,而cache中的数据通常来说都有使用很多次的可能性。不过红帽官方的文档解释又是有些不同呢。
Alternatively, you can use the free(1) command to check the memory:
$ free
total used free shared buffers cached
Mem: 4040360 4012200 28160 0 176628 3571348
-/+ buffers/cache: 264224 3776136
Swap: 4200956 12184 4188772
$
In this example the total amount of available memory is 4040360 KB. 264224 KB are used by processes and 3776136 KB are free for other applications. Do not get confused by the first line which shows that 28160KB are free! If you look at the usage figures you can see that most of the memory use is for buffers and cache. Linux always tries to use RAM to speed up disk operations by using available memory for buffers (file system metadata) and cache (pages with actual contents of files or block devices). This helps the system to run faster because disk information is already in memory which saves I/O operations. If space is needed by programs or applications like Oracle, then Linux will free up the buffers and cache to yield memory for the applications. If your system runs for a while you will usually see a small number under the field "free" on the first line.
A buffer is a temporary location to store data for a particular application and this data is not used by any other application. This is similar to bandwidth concept. When you try to send burst of data through network, if your network card is capable of sending less data, it will keep these huge amounts of data in buffer so that it can send data constantly in lesser speeds. In other hand Cache is a memory location to store frequently used data for faster access. Other difference between a buffer and a cache is that cache can be used multiple times where as buffer is used single time. And both are temporary store for your data processing.
http://hi.baidu.com/newdreamllc/item/ab1fa635fb6d6e4c033edcc2
内存是影响 Linux 性能的主要因素之一,内存资源的充足与否直接影响应用系统的使用性能。
free 命令:监控 Linux 内存使用状况。
由上图可知,空闲内存是 free+buffers+cached=155MB
一般来说如果空闲内存 / 物理内存 >70% ,内存性能优;如果小于 20% ,则性能差,需要添加内存。
vmstat 命令: 显示关于系统各种资源之间相关性能的简要信息。
如果 si 和 so 数值很大的话,可能是出现系统资源紧缺。
sat 命令: 可以对每个方面进行单独的统计,但是增加了系统开销,但是对系统的统计结果不会有很大影响。
r 是查看内存和交换分区的使用率的。
%commit :应用程序使用内存百分比。
kbcommit: 应用程序使用内存的大小。
由上面 2 行就可以看出系统目前的内存使用情况。
kbmemfree :空闲物理内存的大小。
kbmemused :已经使用物理内存的大小。
%memused :已使用内存占总内存大小的百分比。
==========================
#free -m
used free -/+ buffers/cache: 2571840 1480216
- buffers/cache 反应的是被程序实实在在吃掉的内存 + buffers/cache 反应的是可以挪用的内存总数
$ free
total used free shared buffers cached
Mem: 255268 238332 16936 0 85540 126384
-/+ buffers/cache: 26408 228860
Swap: 265000 0 265000
实际使用的buffers 与cache 总量,也是实际使用的内存总量。 free2: 未被使用的buffers 与cache 和未被分配的内存之和,这就是系统当前实际可用内存。
total1 = used1 + free1 total1 = used2 + free2
used1 = buffers1 + cached1 + used2
free2 = buffers1 + cached1 + free1
A buffer is something that has yet to be "written" to disk. A cache is something that has been "read" from the disk and stored for later use.
修改/etc/sysctl.conf中的vm.swappiness右边的数字可以在下次开机时调节swap使用策略。该数字范围是0~100,数字越大越倾向于使用swap。默认为60,可以改一下试试。 两者都是RAM中的数据。简单来说,buffer是即将要被写入磁盘的,而cache是被从磁盘中读出来的。 buffer是由各种进程分配的,被用在如输入队列等方面,一个简单的例子如某个进程要求有多个字段读入,在所有字段被读入完整之前,进程把先前读入的字段放在buffer中保存。 cache经常被用在磁盘的I/O请求上,如果有多个进程都要访问某个文件,于是该文件便被做成cache以方便下次被访问,这样可提供系统性能。
Linux的内存管理,实际上跟windows的内存管理有很相像的地方,都是用虚拟内存这个的概念,说到这里不得 不骂MS,为什么在很多时候还有很大的物理内存的时候,却还是用到了pagefile. 所以才经常要跟一帮人吵着说Pagefile的大小,以及如何分配这个问题,在Linux大家就不用再吵什么swap大小的问题,我个人认为,swap设 个512M已经足够了,如果你问说512M的SWAP不够用怎么办?只能说大哥你还是加内存吧,要不就检查你的应用,是不是真的出现了memory leak.
如何看额定值(RHEL4.0):
#cat /proc/meminfo
交换将通过三个途径来减少系统中使用的物理页面的个数:
1.减少缓冲与页面cache的大小,
2.将系统V类型的内存页面交换出去,
3.换出或者丢弃页面。(Application 占用的内存页,也就是物理内存不足)。
事实上,少量地使用swap是不是影响到系统性能的。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。