How to list the resources used for each process


 
Thread Tools Search this Thread
Operating Systems AIX How to list the resources used for each process
# 1  
Old 04-30-2008
How to list the resources used for each process

Hi Expert,

Can anyone tell what command can list the resources used for each process in AIX, including the following columns:

Process ID, Program Name, Resources used(CPU,RAM,SWAP),Start Time

Thanks!!
Victor Cheung
# 2  
Old 04-30-2008
There isn't a single command that can do that, consider piping few applications that will report that, for example "topas -P -o unavailmem" - this will report the process ID, the process name, the CPU time, and the size of unavailable memory.
# 3  
Old 04-30-2008
Have a look at the man page of "ps" and you will find most of the information you are seeking, especially when examining the option "-o".

For instance: display memory used, ProcessID and commandline:

"ps -Alo vsz,pid,args"

I hope this helps.

bakunin
# 4  
Old 05-06-2008
Thanks Both!
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to list process name only?

Hi team, Anyone help me cut a process name from ps -ef output? lit-dbrac01-b004: $ ps -ef|grep pmon|cut -f5 ... oracle 448 1 0 2014 ? 00:04:15 ora_pmon_blms50db2 Like I need just the process name: ora_pmon_blms50db2 Any ideas? Thanks in advance. jd (3 Replies)
Discussion started by: jonnyd
3 Replies

2. Shell Programming and Scripting

List of process of user

Hi, I need an output of process running on server, i am executing ps -ef | grep test output is asak 22362 1 0 Nov07 ? 00:00:03 /usr/software/bin/perl-5.8.8 /u/assk/bin/test -v none JOBID=2012117 asak 23748 22362 0 Nov07 ? 00:00:00 /usr/software/bin/perl-5.8.8... (3 Replies)
Discussion started by: asak
3 Replies

3. HP-UX

PID Process Resources

Hi all. I need to get detailed information about a PID. I have an app called Reflection X and it shows many things like Total CPU percent, User CPU (Nice) percent, FS Reads, etc. My question is how can I get all that information on console? Is there an archive with the detailed... (9 Replies)
Discussion started by: the0m3n
9 Replies

4. AIX

AIX resources consumption group by process pattern

Hi, I have AIX processes something as below, how to know the resources consumption group by process pattern "price" and "devdb"? eg: CPU RAM WIO price 20% 250M 5% devdb 30% 1000M 8% oracle 2990122 1 0 10:33:39 - 0:00... (1 Reply)
Discussion started by: victorcheung
1 Replies

5. AIX

Process ids consuming huge resources ?

Hi All what is the command to check process ids , which are running from long time and which are consuming more cpu? Also how to check, what a particular PID is running what For Ex: i have a pid :3223722 which is running since from long time, if i want to check what is this... (1 Reply)
Discussion started by: sidharthmellam
1 Replies

6. UNIX for Dummies Questions & Answers

process list

i read in ps manual that -C cmdlist will just result to processes stated in the cmdlist. i intend to issue this command ps c -FC "firefox-bin, soffice.bin" here cmdlist contains two executables only. in the future, this cmdlist will grow. is there a way i can make ps read a csv file as... (2 Replies)
Discussion started by: mbaste2
2 Replies

7. Solaris

List all resources on physical host LDOM server

Hello, I have a SUN T5240 running Solaris 10 with Logical Domain Manager (v 1.0.3). You can use the "ldm" command to display current resources on the box. Is there away to display all the "physical resources" on the box(i.e.,used and unused). For example, "ldm ls" will tell me what the... (5 Replies)
Discussion started by: stephanpitts
5 Replies

8. UNIX for Dummies Questions & Answers

Process list

Hi, How to list the processes which are created in last 7 days ? Is there any script or command, please reply ASAP. Thanks Rajesh (2 Replies)
Discussion started by: rajesh08
2 Replies

9. AIX

Finding process taking up resources

I'm assuming that using the PS command would tell me about processes running. But how can I target a process that is taking up too many resources, and slowing down the system. Even an orphan process. (5 Replies)
Discussion started by: NycUnxer
5 Replies

10. UNIX for Advanced & Expert Users

list windows process

Hello Community, I've got a unix server and 13 pcs with windows. I'm trying to built some tiny winy app to monitorize the windows processes. Any one knows if exist some kind of pstools for unix to communicate with windows. I'm the system administartor so I've got rights in all computers. ... (3 Replies)
Discussion started by: ncatdesigner
3 Replies
Login or Register to Ask a Question