1848295 Members
5411 Online
104024 Solutions
New Discussion

Re: Memory Usage

 
SOLVED
Go to solution
Ila Nigam
Occasional Contributor

Memory Usage

Is there any way to script the memory usage of certain user process?
3 REPLIES 3
Vicente Sanchez_3
Respected Contributor
Solution

Re: Memory Usage

Chris Wilshaw
Honored Contributor

Re: Memory Usage

You can use

UNIX95= ps -u -opid,vsz, args

This will list the PID, the size of the process in KB, and the command plus arguments that are running for the particular user.

You can then process this with sort, awk, grep or whatever else you choose to limit the details that you're viewing.
Uday_S_Ankolekar
Honored Contributor

Re: Memory Usage

Use Glance or gpm (for gui version) to get detailed info about each process and it's memory usage.
A trial version of glance available on application CD.

-USA..
Good Luck..