free 命令 查看内存大小
free -g :G单位 free -h : 可读性较高较理解 free -m : MB单位
- total: 总内存
- used: 正在运行的进程使用的内存(used= total – free – buff/cache)
- free: 未使用的内存 (free= total – used – buff/cache)
- shared: 多个进程共享的内存
- buffers: 内存保留用于内核操作一个进程队列请求
- cache: 在 RAM 中保存最近使用的文件的页面缓存的大小
- buff/cache: Buffers + Cache
- available: 估计有多少内存可用于启动新应用程序,而无需交换。
/proc/meminfo 文件
/proc/meminfo 文件是一个特殊的文件,它包含了系统的内存使用情况。可以通过 cat 命令查看该文件的内容,从而获取系统的内存使用情况的详细信息。