ptree equivalent for IBM machine


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting ptree equivalent for IBM machine
# 1  
Old 07-30-2010
ptree equivalent for IBM machine

Hi
does anyone know of the equivalent of "ptree <PID>" command which can be used on IBM (AIX) machine. I was trying to use "ptref" but it produces too many lines of "unrelated " to the PID output.
May be someone has this issue before. Thanks a lot -A
# 2  
Old 07-30-2010
Did u try
Code:
ps -T <pid>

Is that what you want?

---------- Post updated at 06:54 PM ---------- Previous update was at 06:54 PM ----------

U can also try proctree
# 3  
Old 07-30-2010
Thanks a lot. proctree is the answer for my problem.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

[Tip] ptree for Linux

Unix (and Linux) uses a process tree that gives a natural security, by simple inheritance of attributes. The following ptree script shows it. It runs on all Linux flavors. Mostly useful for debugging. #!/bin/sh # Solaris style ptree && exec /usr/bin/ptree "$@" ... (6 Replies)
Discussion started by: MadeInGermany
6 Replies

2. Shell Programming and Scripting

Need help on ARJ extraction in IBM AIX Machine

Hi, We have the requirement that, needs to extract the *.arj (archive) files in IBM AIX platform. Anyone can guide me to how to extract the files using ARJ or any other zip technique. Regards, Deepak. (3 Replies)
Discussion started by: mkdeepak87
3 Replies

3. AIX

IBM Virtual Machine OS on intel x86 and x64? IBM AIX OS on IBM Virtual Machine?

Hi There, I have zero information and zero knowledge for IBM virtual machine except Amazon cloud and VMware ESXi (Only Linux OS available). Anyone could provide me the following answer - Can IBM VM been deploy on X86 and X64 (Intel Chip)? If answer is yes any chance to deploy AIX OS... (13 Replies)
Discussion started by: chenyung
13 Replies

4. Shell Programming and Scripting

prstat from ptree ...

Hi, I know how to figure out the list of PID from my application name : ptree `pgrep MyApp` | awk '{print $1}' But I dont know how to pipe it for prstat -p <pidlist> ptree `pgrep MyApp` | awk '{print $1}' | prstat -p ??? I would like to monitor every ptree PID from my application. ... (4 Replies)
Discussion started by: RickTrader
4 Replies

5. AIX

core dump generation in IBM machine

Hi, im getting a core dump file in a AIX machine while using a complex c++ program. The same program is working without any core error in another system with sun OS 5.9. The program has used structs, LL's and lots of call by references. What may be the reason. will it be a problem with the OS ? (3 Replies)
Discussion started by: suresh_kb211
3 Replies

6. HP-UX

command that is equivalent to smitty in IBM.

i need to change OS level parameter like number of user how to change system environment variable ??? equivalent to smitty in IBM (1 Reply)
Discussion started by: oracle_rajesh_k
1 Replies

7. HP-UX

command that is equivalent to TOPAZ in IBM.

how to find that which process is taking more time in HP-UX server 11.23?? Need the command that is equivalent to TOPAZ in IBM.. (2 Replies)
Discussion started by: oracle_rajesh_k
2 Replies

8. Gentoo

ptree for linux

at work, I'm a UNIX administrator, but at home I use openSUSE 11. One of the commands that I use to assist me in trouble shooting A LOT is called ptree process tree. does anyone know of a ptree for linux? yes, I can just use ps -ef and see who the parent pid is and then 'ps -ef | grep <parent... (4 Replies)
Discussion started by: james.witte
4 Replies

9. Shell Programming and Scripting

equivalent of ptree command in zsh

ptree command is not working in zsh. Could anyone let me know the equivalent of ptree command in zsh. (3 Replies)
Discussion started by: dhams
3 Replies

10. UNIX for Dummies Questions & Answers

IBM-aix equivalent to these hp-ux commands

hi , what are the ibm equivalent to the below commands. thanks top glance ioscan (1 Reply)
Discussion started by: yls177
1 Replies
Login or Register to Ask a Question