linux /proc 查看实际占用的物理内存
参考链接:https://c.isme.pub/2019/02/18/linux-proc/
# 举例查看nginx进程使用的物理内存
ps -A | grep nginx # 找到进程号,如 12345
cat /proc/12345/status | grep VmRSS # VmRSS 对应的即为进程使用的物理内存
参考链接:https://c.isme.pub/2019/02/18/linux-proc/
# 举例查看nginx进程使用的物理内存
ps -A | grep nginx # 找到进程号,如 12345
cat /proc/12345/status | grep VmRSS # VmRSS 对应的即为进程使用的物理内存