Operating System - HP-UX
1748090 Members
4998 Online
108758 Solutions
New Discussion юеВ

How to verify the size of a process

 
HPUX_chatr
New Member

How to verify the size of a process

Hi All,

Could you please advise on the command to verify the size of a process.

The process name is arserved.

We are on HPUX 11.23 itanium.

Many thanks in Anticipation.
Best Regards,
John Joseph
2 REPLIES 2
Prasanth V Aravind
Trusted Contributor

Re: How to verify the size of a process



>>> verify the size of a process ????

what it mean ???

Memory utilization of a proc ??

Or anything else ??


For memory size , use command
UNIX95=1 ps -efo vsz,sz,pid,args |grep -v grep | sort -rnk 1 | more
look at both virtual size as well as the actual size:

Gudluck
Prasanth
Jose Mosquera
Honored Contributor

Re: How to verify the size of a process

Hi, try this at command line:
UNIX95=1 ps -e -o vsz,pid,ruser,args|sort -rn

You can use any of the ps command output format options (-o ) to enhance your output info (man ps).

Rgds.