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

本文共 1763 字,大约阅读时间需要 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  交换分区信息

转载于:https://www.cnblogs.com/xiaochina/p/6287474.html

你可能感兴趣的文章
oracle 数据库 数据块损坏
查看>>
文字相对于 div 垂直居中
查看>>
网络爬虫入门系列(二)
查看>>
git的一些操作指令
查看>>
JavaWeb过滤器验证登录(避免未经登录进入主页)
查看>>
Android 横屏切换竖屏Activity的生命周期(转)
查看>>
Problem in mapping fragments starting at line 342:Must specify mapping for all key properties
查看>>
Dev GirdView 去掉系统菜单
查看>>
ios开发笔记之 自定义tabBar
查看>>
使用GCD的dispatch_once创建单例
查看>>
jdk各个版本
查看>>
图片选择器
查看>>
Android Handler处理机制 ( 二 ) ——Handler,Message,Looper,MessageQueue
查看>>
高精度减法
查看>>
【USACO 5.1.2】Starry Night
查看>>
python-3:列表类型操作:增删改查
查看>>
No MaterialLocalizations found (Flutter)
查看>>
要到国庆了
查看>>
C#---数据类型
查看>>
POJ 3537 Crosses and Crosses(SG/还未想完全通的一道SG)
查看>>