vote up 1 vote down star

I have the pid of a running process in freebsd. How do I obtain its current directory?

flag

3 Answers

vote up 0 vote down

/proc/$PID/cwd contains a symlink to the programmes current working directory.

link|flag
It should be noted that the /proc filesystem is not necessarily available in all installations of FreeBSD. – Greg Hewgill Jul 21 at 10:47
This works for Linux, but doesn't seem to be part of /proc in FreeBSD. See the procfs man page at: freebsd.org/cgi/man.cgi?query=procfs – Keith Smith Jul 21 at 15:10
vote up 1 vote down

You can get the inode number of the current working directory with

fstat -p $PID

It looks like lsof will give you a human readable form of the current working directory, but we don't have that installed on any of the local FreeBSD machines, so I can't verify that.

link|flag
vote up 0 vote down

fstat can find the inode number and filesystem, and find can find the correct directory.

Try this:

fstat -p $$|perl -ane '$F[3] eq "wd" && system("find",$F[4],"-xdev","-inum",$F[5],"-print");'

When run as non-root, find will probably output quite a few "Permission denied" messages which can be avoided by inserting close(STDERR); in front of the $F[3] (after the first single quote).

link|flag

Your Answer

Get an OpenID
or

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