Skip to content Skip to main navigation Skip to footer

Linux:Linux 下查看某一个程序所使用的内存方法

在 Linux 上进行开发和运营维护的时候,免不了要查看某一个程序所占用内存的情况。有很多个命令都可以达到我们的需求,这里给大家列举几个:

1:

top -p pid 查看程序的情况

2:

ps -aux | grep process_name

3:

cat /proc/pid/status

  这里会打印出当前进程详细的情况,其中,内存是 VmRSS。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.