寻找 /procfs 文档,描述值和测量单位

寻找 /procfs 文档,描述值和测量单位

/procfs令人惊讶的是,很难找到全面的文档。对于我的具体问题,我正在查看:(cat /proc/1/statm让我们使用,pid=1因为它似乎总是存在)。我刚刚运行了这个并得到了结果:

9370 954 341 210 0 727 0
  1. 其中哪一项是常驻内存?
  2. 它是用什么来衡量的?
  3. 如何将其转换为兆字节?

答案1

文档位于Documentation/filesystems/proc.txt在内核源代码中。许多发行版通过软件包提供它(例如,linux-doc在 Ubuntu 下,在 下安装文件/usr/share/doc/linux-doc)。

statm以下是文档中字段的描述:

Field    Content
size     total program size (pages)     (same as VmSize in status)
resident size of memory portions (pages)    (same as VmRSS in status)
shared   number of pages that are shared    (i.e. backed by a file)
trs      number of pages that are 'code'    (not including libs; broken, includes data segment)
lrs      number of pages of library     (always 0 on 2.6)
drs      number of pages of data/stack      (including libs; broken, includes library text)
dt       number of dirty pages          (always 0 on 2.6)

该进程在 RAM 中有 954 个页面。在您的系统上,一个页面为 4kB(它可以是奇异架构或配置上的其他值;getconf PAGESIZE将确认这一点)。所以略低于 4MB。

该文档并不详尽。如果找不到您要查找的内容,请尝试在Linux 每周新闻或网络上的其他地方。如果你还是找不到答案,使用源

相关内容