Linux之free命令

Posted afeige

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux之free命令相关的知识,希望对你有一定的参考价值。

free命令可以查看内存使用的相关情况

1、用法

free [选项]

 

2、命令选项

-b   以Byte为单位显示内存使用情况
-k    以KB为单位显示内存使用情况(默认以KB显示)
-m    以MB为单位显示内存使用情况
-g    以GB为单位显示内存使用情况
-h    以合适的单位显示内存使用情况
-o    不显示缓冲区调节列
-s<n>   动态观察内存使用状况,每n秒刷新
-t    显示内存总和列

3、实例

1)查看内存

[[email protected] /]# free
              total        used        free      shared  buff/cache   available
Mem:        1882232      448528      826408       47592      607296     1203604
Swap:       1049596      129920      919676
[[email protected] /]# free -m
              total        used        free      shared  buff/cache   available
Mem:           1838         437         807          46         593        1175
Swap:          1024         126         898
[[email protected] /]# free -h
              total        used        free      shared  buff/cache   available
Mem:           1.8G        437M        807M         46M        593M        1.1G
Swap:          1.0G        126M        898M

4、说明

Mem           内存
Swap             虚拟内存
total            内存总数
used                 已经使用的内存数
free                   未分配的内存数
available          可用内存
bbuff/cache     缓存内存数

tatal         =     used + free + buff/cache
available =    free + buff/cache - 不可回收的部分   

以上是关于Linux之free命令的主要内容,如果未能解决你的问题,请参考以下文章

linux系统之free命令详解

Linux之free命令

Linux之free命令

N天学习一个Linux命令之free

linux-10 基本命令之查看内存使用情况- free,history,who,last

linux系列之常用运维命令整理笔录