Tagged Questions
0
votes
2answers
150 views
Total RAM used by a program with `ps`? [duplicate]
Possible Duplicate:
Measuring RAM usage of a program
I am trying to use ps to benchmark a program, I'm just not sure which flags to use. I would like to get the amount of RAM the program ...
2
votes
1answer
1k views
Mathematical connection between SZ RSS and VSZ in ps o/p?
I wanted to know what mathematical connection is there between the SZ, RSZ and VSZ output in ps output e.g.
ps -p 2363 -o sz,rss,vsz
2
votes
1answer
3k views
How to find out total memory resource usage with ps?
With ps command I can find out how much memory each program uses:
ps -u mertnuhoglu -o pcpu,rss,pid,command
Is it possible to find out the sums of each type of resource usage as well, easily?
6
votes
2answers
504 views
Difference between free -m and ps -euf
I'm not an expert on linux so I do apologize in advance for the silly question.
I have a vps machine with ubuntu 10.04 and 512Mb of RAM. I'm trying to guess how much memory is available after running ...