ps -vxa 不对内存进行排序

ps -vxa 不对内存进行排序

FreeBSD 联机帮助页ps说:

-v   Display information associated with the following keywords: pid,
     state, time, sl, re, pagein, vsz, rss, lim, tsiz, %cpu, %mem, and
     command.  The -v option implies the -m option.

但它似乎根本不是这样工作的。-m应该按内存使用情况排序:

-m   Sort by memory usage, instead of the combination of controlling
     terminal and process ID.

但这是以下的部分输出ps -vxa

 PID STAT    TIME  SL  RE PAGEIN     VSZ    RSS LIM TSIZ  %CPU %MEM COMMAND
 ...
 871 Is   0:00.04 127 127     10   75620   7704   -  400   0.0  0.1 /usr/lo
1043 S    0:03.18   0 127   9599 1656244 253048   -  172   0.0  3.1 /usr/lo
1046 S    0:09.48   0 127    412 1672996 264060   -  172   0.0  3.3 /usr/lo
 873 I    0:00.14 127 127    123   65956  11432   -  280   0.0  0.1 /usr/lo

那么,这里发生了什么?我们从 的描述中假设的排序在哪里-m

答案1

排序就在那里。

问题是,当按“内存使用量”排序时,您期望它按单个可见字段排序。虽然文档记录得不太好,但排序所依据的“内存使用量”是一个不可见的、实际上不可打印的字段,它是dsizssiztsiz字段的总和。

相关内容