Need to get process details


 
Thread Tools Search this Thread
Operating Systems AIX Need to get process details
# 1  
Old 12-16-2013
Need to get process details

Hello,

Below are the list of files


Code:
ls -lrt
total 16
lr-x------   43 oracle   dba               0 Dec  5 14:27 root -> /
lr-x------    2 oracle   dba               0 Dec 16 00:14 cwd -> /prodoragridcn_01/app/oracle/product/11203/dbs/
-r--r--r--    1 oracle   dba               0 Dec 16 07:30 sysent
-r--------    1 oracle   dba            1520 Dec 16 07:30 status
-r--------    1 oracle   dba           12288 Dec 16 07:30 sigact
-r--r--r--    1 oracle   dba             448 Dec 16 07:30 psinfo
dr-x------    1 oracle   dba               0 Dec 16 07:30 object
-r--------    1 oracle   dba               0 Dec 16 07:30 mmap
-r--------    1 oracle   dba               0 Dec 16 07:30 map
dr-xr-xr-x    1 oracle   dba               0 Dec 16 07:30 lwp
dr-x------    1 oracle   dba               0 Dec 16 07:30 fd
--w-------    1 oracle   dba               0 Dec 16 07:30 ctl
-r--------    1 oracle   dba             128 Dec 16 07:30 cred
-rw-------    1 oracle   dba               0 Dec 16 07:30 as

\

Please help me with how to analyse about this process that from where is it is originating and what it's doing?

Best regards,
Vishal
# 2  
Old 12-16-2013
you can use
Code:
fuser

command to identify whihc process/processes is/are using .please see man page of the command for further details

Code:
man fuser

# 3  
Old 12-16-2013
Quote:
Originally Posted by Vishal_dba
Below are the list of files
[...]
Please help me with how to analyse about this process
I have marked bold the relevant parts above. Care to tell us what you mean? A file listing ist not a process and a process is not a list of files. So, what do you want to know?

I hope this helps.

bakunin
# 4  
Old 12-17-2013
try also proctreecommand.

it liste the list of your process and where they from
# 5  
Old 01-05-2014
Hi,

The list of files are listing of /proc/process_id

Is there a file in this listing which can help us give the details for a process?


Best regards,
Vishal
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Need iplanet process health runtime details

Hi, I have iPlanet 7.0 process running on Solaris system SunOS mymac15.10 Generic_150400-59 sun4v sparc sun4v. The link here suggests to use the below command to get process runtime details / health inorder to understand if the iPlanet process is hung or good. /usr/bin/ps -o "pid ppid... (4 Replies)
Discussion started by: mohtashims
4 Replies

2. Shell Programming and Scripting

Need generic command to get complete running process details

I am on SunOS and Linux I need generic command to get complete process details from which i will eventually extract socket details (listen address and port) ps -ef | ggrep -i server | ggrep -i mydomaindoes not yield a process that should have both the grep entries along with the listen... (8 Replies)
Discussion started by: mohtashims
8 Replies

3. Solaris

Process holding /tmp space, need to know the process details

Hi , In a server /tmp has almost reached 75% and i can see the File system utilization is 48Mb only , so i believe some process is using the /tmp space. I would like to know which process is using /tmp space. # df -h /tmp Filesystem size used avail capacity Mounted on swap ... (9 Replies)
Discussion started by: chidori
9 Replies

4. UNIX for Dummies Questions & Answers

at -l doesnt give details of the scheduled job. How to get the details?

I have scheduled couple of shell scripts to run using 'at' command. The o/p of at -l is: $ at -l 1320904800.a Thu Nov 10 01:00:00 2011 1320894000.a Wed Nov 9 22:00:00 2011 1320876000.a Wed Nov 9 17:00:00 2011 $ uname -a SunOS dc2prcrptetl2 5.9 Generic_122300-54 sun4u sparc... (2 Replies)
Discussion started by: superparticle
2 Replies

5. Shell Programming and Scripting

getting Details of pf -ef

Hi All, I have a Linux server where many script run on daily basis through crontab. I could see some entries on my name but I am not able to get the details. >>ps -ef | grep an001 >>root 9905 1742 0 Apr17 ? 00:00:00 sshd: an001 >>an001 9907 9905 0 Apr17 ? ... (3 Replies)
Discussion started by: infyanurag
3 Replies

6. HP-UX

HP-UX Server Details

OS: HP-UX I need the following details from HP-UX server. I don't have root login, so most of the commands require root privilege 1. No of cpu in the server 2. Total Memory, Free & Used 3. Space used and free space Any help would be highly appreciated (6 Replies)
Discussion started by: manijash
6 Replies

7. UNIX for Dummies Questions & Answers

How to find the details of the previously running process with PID

OS: Unix or Linux I (only) know the pid of the process which was running earlier (say 5 hrs back) but it is not running now. Is there a way I could find the details of that process? (atleast the name of the process). Please let me know. (2 Replies)
Discussion started by: vijay.d
2 Replies

8. UNIX for Dummies Questions & Answers

How does one get HW details?

I need to do a full system inventory & pull details for: CPU Mem HDD (Size, config, partitions) Is there a single command to get this, or separate for each? Thanks, Gareth. (3 Replies)
Discussion started by: garethh
3 Replies

9. HP-UX

HP -UX certification details.

Hi all, I like to do HP-UX certification in unix administration. Can any one give me the details like test cirriculum, is it online test? if not where is this test conducted in INDIA, How to register to this test. Thank you in advance, Sireesha NP. (2 Replies)
Discussion started by: Sireesha NP
2 Replies

10. HP-UX

Getting Hardware Details on HP-UX

Hi All, Please let me know the list of commands, that can give me the list of hardwares available on the HP-UX Box. I'm using HP-UX B.11.00. I would like to know the list of HBA's, PCIMCA Cards etc., attached to the system. And also, which device files point to which Hardware. more &... (1 Reply)
Discussion started by: S.Vishwanath
1 Replies
Login or Register to Ask a Question