Operating System - HP-UX
1830239 Members
1705 Online
109999 Solutions
New Discussion

Command to verify use of memory, etc by user

 
SOLVED
Go to solution
Manuales
Super Advisor

Command to verify use of memory, etc by user

hi
what is the command to verify the use of memory and cpu by each user???
it appears something like ...dos... but i do not remember the name of the command....

please let me know.
Thanks :0)
2 REPLIES 2
James R. Ferguson
Acclaimed Contributor
Solution

Re: Command to verify use of memory, etc by user

Hi Manuales:

The 'ps' command gives you per-process statistics. You can "roll-your-own" by using the UNIX95 '-o' option list. For example:

# UNIX95= ps -u root -o pid,comm,vsz,time

...will show only processes owned by 'root' listing their pid, command name, virtual size, and the cummulative execution time.

Regards!

...JRF...
Manuales
Super Advisor

Re: Command to verify use of memory, etc by user

THANKS A LOT !!!!! I got it ...!!!!