lsof ???


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers lsof ???
# 1  
Old 06-21-2006
lsof ???

Hi All,

I'm having a problem with "lsof" in HP-UX system. Its giving me 2 two different results when running it.

1 . lsof -p 'PID' | wc -l -----gives some value
2 . lsof | grep 'PID' | wc -l

The above two commands gives me two different values with the same PID......

Thanks
# 2  
Old 06-21-2006
Here's the output of lsof on a Sun 5.9 system for pid 1 (init process).

HTML Code:
$ lsof 2>/dev/null |grep " 1 "
init          1     root  cwd   VDIR         256,0       2048          2 /
init          1     root  txt   VREG         256,0     919644      28367 /sbin/init
init          1     root  txt   VREG         256,0     222708    1545266 /etc/lib/ld.so.1
init          1     root  txt   VREG         256,0       3984    1545267 /etc/lib/libdl.so.1
init          1     root    0u  FIFO         256,0        0t0    1543503 /etc/initpipe
$ lsof -p 1 2>/dev/null
COMMAND PID USER   FD   TYPE DEVICE SIZE/OFF    NODE NAME
init      1 root  cwd   VDIR  256,0     2048       2 /
init      1 root  txt   VREG  256,0   919644   28367 /sbin/init
init      1 root  txt   VREG  256,0   222708 1545266 /etc/lib/ld.so.1
init      1 root  txt   VREG  256,0     3984 1545267 /etc/lib/libdl.so.1
init      1 root    0u  FIFO  256,0      0t0 1543503 /etc/initpipe
Now the difference in the wc -l for the two will come in because the second output has the header line included in it. I believe that you would be getting the 'lsof -p' output as one greater than the 'lsof |grep pid' output.
# 3  
Old 06-21-2006
Blowtorch,

Thanks for the reply.

lsof -p 'pid' | wc -l is giving me an o/p with difference of around 80 more than lsof | grep pid | wc -l.
# 4  
Old 06-22-2006
I am surprised. I tried the 'lsof -p' versus the 'lsof |grep ' combination several times, but the difference was never more than one.
Maybe you could manually check the difference between the two. Skip the '|wc -l' part and redirect the outputs to different files. Then run a diff between the files to find what the difference between the two commands is.
# 5  
Old 06-22-2006
I will try it tommorrow. I tried it on Linux "Mandriva" and it showed me a difference of one as expected.

Thanks for the reply.
Post u the result tommorow
# 6  
Old 06-22-2006
I tried redirecting the o/p two different files and diff it. It has around 280 lines in it and complaing about each line.

Any other way to do it

???
# 7  
Old 06-23-2006
What is the difference in the number of lines in the two files? I am sorry, but I cannot get more detailed as I don't have lsof that runs on HP-UX
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Lsof command

Hi, I am trying to find the files in a specific directory that are currently in open state. I need this information to archive the old files that are not active in the directory. I get the following output when I try the command $ lsof +d '/var/tmp/'|awk '{print $9}'|sort -u NAME... (1 Reply)
Discussion started by: ryzen7
1 Replies

2. OS X (Apple)

Lsof output

This is abridged lsof output from my safari process: Safari 13063 owner 9u unix 0x982ef3b9c1be1293 0t0 ->0x982ef3b9b7534eab Safari 13063 owner 10u unix 0x982ef3b9c1be0933 0t0 ->0x982ef3b9c1be1423 Safari 13063 owner 11u unix 0x982ef3b9c1be1423 ... (1 Reply)
Discussion started by: sakurashinken
1 Replies

3. HP-UX

lsof in HP-UX

In Linux and Solaris lsof accepts the -X switch which allows to see if deleted files are still in use and eat disk space. In HP-UX it is now working and it is a problem... today one of my filesystems on the server was increasing very fast but existing file sizes were not really changing. lsof shows... (3 Replies)
Discussion started by: Vorb
3 Replies

4. UNIX for Dummies Questions & Answers

about lsof

Hi, I typed lsof -i :80 in my putty but i am not able to get sockets related to port 80 Can any one help me out soon Can anyone point out the reason for not able to get the related sockets Output of what i am getting in my putty is displayed below training@use:~> lsof -i :80... (4 Replies)
Discussion started by: satheeshkr_cse
4 Replies

5. UNIX for Dummies Questions & Answers

lsof

I'm looking to list all of the files open at a certain time up on a UNIX box. From looking on the internet, it looks as though lsof is the most common. However have tried this and got the following: ksh: lsof: not found Now having gone into bash mode and hit tab twice I see that lsof... (3 Replies)
Discussion started by: meevagh
3 Replies

6. Shell Programming and Scripting

Find and lsof

Hi All, My target is to find the biggest files opened by any process and from that i have to find process id and the corresponding file also. To get the process id which is accessing the biggest file in the given file system, i am using the below command. lsof -s /home/arun/my_work |... (3 Replies)
Discussion started by: Arunprasad
3 Replies

7. HP-UX

lsof equivalent in HP-UX

I need lsof equivalent in HP-UX. I do not want to add lsof utility separately. (1 Reply)
Discussion started by: deo_kaustubh
1 Replies

8. HP-UX

lsof on HPUX 11.23

Hey Guys... I am looking for lsof by HPUX 11.23 . Could someone said me where can download it? Thanks in Advance. ANGEL GADEA (3 Replies)
Discussion started by: aggadtech08
3 Replies

9. Filesystems, Disks and Memory

lsof

Could someone please give me a step for a hint on which version and where is the above utility is for version 4.3.3.0 of Aix. (1 Reply)
Discussion started by: jacl
1 Replies

10. UNIX for Advanced & Expert Users

lsof output

I have a number of open files connecting to the rpcbind process running on HPUX 11.00. Usinf lsof -p rpcbind I am unable to identify the ip addresses of the open files. Example of one below - Any ideas? rpcbind 19754 root 100u inet 72,0x72 0t0 TCP 79.60.53.40:* (BOUND) (2 Replies)
Discussion started by: Malcolmm
2 Replies
Login or Register to Ask a Question