命令 free 查看系统的内存状态
free 命令可以显示当前系统未使用的和已使用的内存数目,还可以显示被内核使用的内存缓冲区。
-
命令语法
free (选项) -
命令选项
-b:以 Byte 为单位显示内存使用情况;
-k:以 KB 为单位显示内存使用情况;
-m:以 MB 为单位显示内存使用情况;
-o:不显示缓冲区调节列;
-s< 间隔秒数 >:持续观察内存使用状况;
-t:显示内存总和列; -
查看系统的内存状态
[root@localhost ~]# free
total used free shared buff/cache available
Mem: 1008392 118604 569412 6876 320376 712328
Swap: 2097148 0 2097148
[root@localhost ~]# free -h
total used free shared buff/cache available
Mem: 984M 115M 556M 6.7M 312M 695M
Swap: 2.0G 0B 2.0G
[root@localhost ~]# free -b
total used free shared buff/cache available
Mem: 1032593408 121286656 583221248 7041024 328085504 729587712
Swap: 2147479552 0 2147479552
[root@localhost ~]# free -k
total used free shared buff/cache available
Mem: 1008392 118444 569552 6876 320396 712488
Swap: 2097148 0 2097148
[root@localhost ~]# free -t
total used free shared buff/cache available
Mem: 1008392 118444 569552 6876 320396 712488
Swap: 2097148 0 2097148
Total: 3105540 118444 2666700
说明:
“total=used+free+buff/cache”; “available=free+buff/cache(空闲部分)”;
buff(缓冲):当 CPU 向磁盘写入数据时,由于磁盘存储速率低于 CPU,所以 CPU 工作时先将写好的数据存放在内存中,该部分内存即为缓冲内存;
cache(缓存):当 CPU 从磁盘读取数据时,由于磁盘输出速率低于 CPU 的读取速度,所以磁盘的数据会预先存放在内存中,该部分内存即为缓存内存;