Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
1k views

How to clean up after subprocess.Popen?

I have a long-running python script with a perl worker subprocess. Data is sent in and out of the child proc through its stdin and stdout. Periodically, the child must be restarted. Unfortunately, ...
7
votes
5answers
1k views

lsof survival guide

lsof is an increadibly powerful command-line utility for unix systems. It lists open files, displaying information about them. And since most everything is a file on unix systems, lsof can give ...
5
votes
0answers
29 views

lsof - age of file [migrated]

The *nix command 'lsof' gives you a list of open files. Is anyone aware of a way that would also list how long a particular file has been open? Either by using 'lsof' or any other command. I'm using ...
5
votes
2answers
250 views

lsof counterpart for a JVM?

lsof is a nice tool for Unix, showing all currently open file handles. Does anyone know a similar tool that would show all open files inside a running JVM (via JVMTI or any similar interface)? In ...
4
votes
5answers
7k views

How to close a file descriptor from another process in unix systems

You can use command lsof to get file descriptors for all running processes, but what I would like to do is to close some of those descriptors without being inside that process. This can be done on ...
3
votes
2answers
613 views

Verify whether ftp is complete or not?

I got an application which is polling on a folder continuously. Once any file is ftp to the folder, the application has to move this file to some other folder for processing. Here, we don't have any ...
2
votes
1answer
398 views

Seeing too many lsof can't identify protocol

I have a Java process/app. When I run /usr/sbin/lsof -p on that java process, I see a lot of "can't identify protocol". Also, interestingly, File descriptors(FDs) are increasing at a very steady ...
2
votes
1answer
70 views

lsof not giving o/p for bash built in read

When I do find / on a terminal and then do on another terminal lsof -a -d 0-2 -c fin I see o/p listed from execution of lsof command. But when I do echo hi ; read -t 30 hello hi on the same ...
2
votes
3answers
154 views

How can you tell what files are currently open by any user?

I am trying to write a script or a piece of code to archive files, but I do not want to archive anything that is currently open. I need to find a way to determine what files in a directory are open. ...
2
votes
3answers
444 views

How to use lsof(List Opened Files) in a C/C++ application?

Is there any way to get all opened sockets using C++ ? I know the lsof command, and this is what I'm looking for, but how to use it in a C++ application (or C, it's the same in this case).? Or some ...
2
votes
2answers
315 views

Outgoing TCP port matches listening port

I've encountered a weird happenstance where the results of my lsof | grep 40006 produced java 29722 appsrv 54u IPv6 71135755 0t0 TCP ...
1
vote
2answers
33 views

Move file in Linux only when it's not in use by another process

Using the lsof command, I can determine whether a file is in use by some process, but I need to atomically check a file for use and move it only if unused. These files are in use by various other ...
1
vote
1answer
102 views

Java app with URLConnection leads “Too many open files”

I wrote a small pieces of java program as following: package com.ny.utils.pub; import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; import ...
1
vote
1answer
97 views

Socket not listed in lsof but is listed in netstat

When I do "lsof -nl | egrep "TCP|UDP" " in order to see socket states, I notice that the sockets that I expected to be listed are not at all, but when I do a "netstat --tcp", they are listed, but are ...
1
vote
1answer
181 views

Why doesn't lsof show that libstdc++ is loaded on Mac OS X?

I have an application that I know uses libstdc++, but even as the super user, I cannot see /usr/lib/libstdc++.6.0.9.dylib on my Mac OS X 10.6 Snow Leopard system? lsof | grep libstdc++ If I use ...
1
vote
1answer
848 views

Is it possible to control which libraries apache uses?

Okay, so I had an earlier problem with PIL that is still unresolved. Someone else had this problem and had success by removing the old JPEG library. I can't really do that on my machine, however, as ...
1
vote
0answers
296 views

How to find the other point of a Unix domain socket on Mac OS X to write/read it?

I listed open file for a process (a daemon) on my box which runs Mac OS X 10.5 : >lsof -p 89 COMMAND PID USER FD TYPE DEVICE SIZE/OFF NODE NAME ... xxxxx 89 xxxxxxxx 9u unix ...
0
votes
0answers
17 views

Odd difference between Python 2.5 and Python 2.6 on MacOS 10.6 using ctypes and libproc proc_pidinfo

I'm trying to determine the current working directory of a process given its PID. The command-line utility lsof does something similar. Here's the source to the python script: import ctypes from ...
0
votes
1answer
27 views

Get number of connections of determinated port [RESOLVED]

Looking for a linux function that returns the count of connections in a port. Was researching about the "lsof", but it only prints connections in a door, and does not return the sum of all ...
0
votes
3answers
49 views

See what process is using a file in Mac OS X

I would like to be able to track a file and see which process is touching that file. Is that possible? I know that I can see the list of open processes in activity monitor but I think it's happening ...
0
votes
0answers
177 views

How to programmatically get a list of open files on the iPhone/iPad?

I am trying to find a simple way to get a list of open files programmatically under iOS, because I am a curious fellow. Is there a simple way to do this that anyone here can explain? Thanks.
0
votes
0answers
77 views

lsof -i event based alternative

I am trying to see if there is an alternative to lsof -i that is event based. I would like to be notified everytime that a socket is created and what the process (PID) is that created it. Is there a ...
0
votes
1answer
132 views

Different result when executed from Crontab

I am trying to get the number of open files periodically through crontab using lsof|wc -l. It always returns zero. It is giving correct result when i run it directly.Any idea about this strange ...
0
votes
4answers
754 views

What's the fastest way using lsof to find a single open file?

I'm trying to test a single file if it is open using lsof. Is there a faster way than this? $result = exec('lsof | grep filename | wc -l'); if($result > 0) { //file is open } I'm thinking ...
0
votes
3answers
191 views

How to debug a connection failure between Jboss and eclipse debugger

I have setup eclipse to attach to a local JVM. But when I try to do the same for a machine over the network I get "connection timed out exception". How do I go about debugging this issue? I tried: ...
0
votes
1answer
733 views

Link to a specific inode

I have a file that was deleted, but is still held open my a program. I found the inode number using lsof. How can I create a hard link back to that inode? Any code helps, but Perl would be handy.
0
votes
2answers
467 views

LSOF connection established

I was wondering, if the output of lsof -i sshd 21880 root 3r IPv4 4843515 TCP somehost.lu.isp.com:ssh->d-XX-XXX.ITS.SOMEWHERE.COM:45037 (ESTABLISHED) sshd 21882 mike ...