博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
free -m 内存
阅读量:5966 次
发布时间:2019-06-19

本文共 1710 字,大约阅读时间需要 5 分钟。

    查看内存及交换swap分区大小及使用率

man  free

NAME       free - Display amount of free and used memory in the systemSYNOPSIS       free [-b | -k | -m] [-o] [-s delay ] [-t] [-l] [-V]DESCRIPTION       free  displays  the total amount of free and used physical and swap memory       in the system, as well as the buffers used by the kernel.  The shared mem-       ory column should be ignored; it is obsolete.   Options       The  -b  switch displays the amount of memory in bytes; the -k switch (set       by default) displays it  in  kilobytes;  the  -m  switch  displays  it  in       megabytes.       The -t switch displays a line containing the totals.       The -o switch disables the display of a "buffer adjusted" line.  If the -o       option is not specified, free subtracts buffer memory from the used memory       and adds it to the free memory reported.       The  -s  switch  activates continuous polling delay seconds apart. You may       actually specify any floating point number for delay,  usleep(3)  is  used       for microsecond resolution delay times.       The -l switch shows detailed low and high memory statistics.       The -V switch displays version information.FILES       /proc/meminfo-- memory information

free   -m  -s   6    ###每隔6s输出一次 

[root@VM_0_3_centos ~]# free -m             total       used       free     shared    buffers     cachedMem:          3830       3723        107          0        240       1604-/+ buffers/cache:       1878       1952Swap:            0          0          0

 计算方式

191272k total  物理内存总量 

173656k used  使用的物理内存总量 
17616k free  空闲内存总量 

total =  userd + free

22052k buffers  用作内核缓存 的内存量 
123988k cached  缓冲的交换区总量。
-/+buffters/cache-userd =  mem-userd  - buffters - cached

swap  交换分区信息

转载地址:http://rxmax.baihongyu.com/

你可能感兴趣的文章
转]最长递增子序列问题的求解
查看>>
SilverLight:基础控件使用(6)-Slider控件
查看>>
Android写的一个设置图片查看器,可以调整透明度
查看>>
第 5 章 File Share
查看>>
判断字符串解析是JsonObject或者JsonArray
查看>>
[LeetCode] Implement strStr()
查看>>
多模块Struts应用程序的几个问题(及部分解决方法)
查看>>
1.2. MariaDB
查看>>
SpringSide示例之HelloWorld
查看>>
LINQ-to-SQL那点事~LINQ-to-SQL中的并发冲突与应对
查看>>
日志不说谎--Asp.net的生命周期
查看>>
C#~异步编程续~.net4.5主推的await&async应用
查看>>
C#进行MapX二次开发之图层操作
查看>>
ASP.NET 运行机制详解
查看>>
C++ little errors , Big problem
查看>>
在 ML2 中配置 OVS vlan network - 每天5分钟玩转 OpenStack(136)
查看>>
Selenium2+python自动化34-获取百度输入联想词
查看>>
【★★★★★】提高PHP代码质量的36个技巧
查看>>
如何解决/home/oracle: is a directory报警
查看>>
python基础学习笔记(九)
查看>>