vote up 2 vote down star
1

What command line should I write to display the memory used by process as well as the process command line and it's pid ?

Something like:

pid mem cmdline
--- --- -------
112 12M mysql -param1 5 -param2 12
115 15M apache -param1 44 -param2 8
...
flag
1  
This belongs on serverfault.com – Stefan Thyberg May 18 at 12:27

2 Answers

vote up 7 vote down check

try

ps -eo pid,rss,cmd
link|flag
+1 for beating me :) – gacrux May 18 at 12:26
Thank you. Did not knew it could be so simple – Toni May 18 at 12:28
vote up 0 vote down

Wasn't there something like the /proc directory? /proc/[id]/mem should lead you there.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.