Operating System - HP-UX
1825793 Members
2542 Online
109687 Solutions
New Discussion

What is using all the memory?

 
SOLVED
Go to solution
Shawn Miller_2
Frequent Advisor

What is using all the memory?

With HP-UX 11.00 how can I get a list of what processes are using the most amount of memory. It is pretty easy with top and glance to see what is using the most amount of cpu. However, cpu is not an issue and memory is. Any suggestions?
2 REPLIES 2
Mel Burslan
Honored Contributor
Solution

Re: What is using all the memory?

Shawn,

There are two different solutions to your question in this thread, hence I will not duplicate them one more time. Please checj this link:

http://forums1.itrc.hp.com/service/forums/questionanswer.do?threadId=838754

hope this helps.
________________________________
UNIX because I majored in cryptology...
A. Clay Stephenson
Acclaimed Contributor

Re: What is using all the memory?

UNIX95= ps -e -o vsz,comm | sort -rn will sort the processes in reverse order of memory "footprint" size. Man ps for details and pay attention to the XPG4 features which is enabled by the "UNIX95= " preceding the ps command.
If it ain't broke, I can fix that.