Re: how to find the process that uses the most memory on hp-ux (topdoes not do it) On Mar 31, 9:46*pm, newa <DavidLL...@gmail.com> wrote:
> Hi,
>
> I know on Linux and Solaris you can use top (by default, top lists the
> processes based on CPU usage) and let it sort the proc list by memory
> usage. But hp-ux top does not do that. So what can you do on hp-ux to
> find the process that uses the most memory?
>
> Thanks a lot in advance.
export Unix95=1
ps -eo ruser,pcpu,sz,vsz,pid
You can now sort it by either Vsz or sz as you see fit. |