1833847 Members
2245 Online
110063 Solutions
New Discussion

Memory

 
SOLVED
Go to solution
H_17
Frequent Advisor

Memory

Is there any way to check what process is using all the system's memory ??
4 REPLIES 4
Stefan Farrelly
Honored Contributor
Solution

Re: Memory

UNIX95= ps -e -o vsz=Kbytes -o ruser -o pid,args=Command-Line | sort -rnk1 | more


This lists all processes in order of those which are using the most memory.
Im from Palmerston North, New Zealand, but somehow ended up in London...
H_17
Frequent Advisor

Re: Memory

This command doesnt seem to work..I am running
HP-UX v11.11
Umapathy S
Honored Contributor

Re: Memory

There is a space between = and ps. Check that.

Cut and paste it. It works for me.

HTH,
Umapathy
Arise Awake and Stop NOT till the goal is Reached!
H_17
Frequent Advisor

Re: Memory


Thanks !!

It works for me now

Thanks again.