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.

link|improve this question

feedback

1 Answer

up vote 5 down vote accepted

Copy from /proc/pid/fd/file descriptor

Use lsof to find the pid and the file descriptor.

link|improve this answer
I just ran my own little test, and this does work, but I don't understand why! Those are symlinks to the actual file, and a symlink accesses the file through its filename, does it not? – Thomas Jul 24 '09 at 16:16
1  
You cannot hard link to the entry in /proc, because hard links have to be on the same filesystem (i.e. your link would have to be in /proc). Copying should be fine. – mark4o Jul 24 '09 at 16:36
mark: noted, thanks. Thomas: they're not real symlinks, they just look like them. Google for proc_register_dynamic for more info. – moonshadow Jul 24 '09 at 16:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.