0

i want get the memory size used by a process in Linux. How can I do that?

2 Answers2

0
ps aux --sort -rss

This will give you a listview of your Prozesses, Wortes by memory usage.

tgr
  • 3,557
  • 4
  • 33
  • 63
0

some useful commands to get memory info for a process:

pmap -x <PID>
top -p <PID>