欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

linux内存用光

程序员文章站 2022-03-15 16:34:02
...
free -g 代表的含义

/	total	used	free	shared	buffers	cached
Mem	总物理内存	当前使用的内存(包括slab+buffers+cached)	完全没有使用的内存	进程间共享的内存	缓存文件的元数据1	缓存文件的具体内容1
-/+ buffers/cache		当前使用的内存(不包括buffers+cached,但包括slab)	未使用和缓存的内存(free+buffers+cached)			
Swap	总的交换空间	已使用的交换空间	未使用的交换空间			



然后top看了下,没有特别吃内存的程序。用ps大概统计下所有程序占用的总内存:
ps aux | awk '{mem += $6} END {print mem/1024/1024}'

cat /proc/meminfo


具体可以参考
http://blog.atime.me/research/linux-ate-my-memory.html