pmap $(ps -ef|grep nginx) #查看靜態內存使用狀況 top 而後shift+m 查看內存使用狀況進行排序 VIRT:進程佔用的虛擬內存 RES:進程佔用的物理內存 SHR:進程使用的共享內存 PID=`ps -ef|grep nginx` cat /proc/$PID/status|grep "VmSize" #查看使用內存狀況 ps aux |grep nginx|awk '{print $5,$6}' 查看VSZ 使用的虛擬內存量(KB) RSS 該進程佔用的固定內存量(KB) ps -e -o "pid,comm,args,pcpu,rsz,vsz"|grep nginx RSZ 真實內存使用 VSZ 虛擬內存量