Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Linux:红帽/Fedora
这些内存值有什么区别:
如果您在谈论RES列 intop -p $(pidof process)和命令中的RSS列之间的区别,则没有区别,因为这两个工具都从文件中获取此值。ps aux | grep $(pidof process)/proc/$(pidof process)/stat
RES
top -p $(pidof process)
RSS
ps aux | grep $(pidof process)
/proc/$(pidof process)/stat
您总是可以 cat/proc/$(pidof process)/status寻找人类可读的格式。
/proc/$(pidof process)/status