The fuser command lets me know which processes are using a file or directory.
I'm looking for command that does the opposite: lets me know which files are being used by a process.
Update
Forgot to mention that it's for a Solaris system.
|
The I'm looking for command that does the opposite: lets me know which files are being used by a process. UpdateForgot to mention that it's for a Solaris system.
| ||||
feedback
|
|
While I wouldn't begrudge anyone learning Dtrace or gaining experience installing software, in Solaris there is a command to see the files a process has open: /usr/bin/pfiles
| |||
|
feedback
|
From here
Wait, I Cannot Find lsof on My System!
| |||||||||
|
feedback
|
|
You can get lsof from http://www.sunfreeware.com/programlistsparc10.html#lsof You can also try pfiles: | |||
feedback
|
|
This is a classic application for dtrace. I can't remember the syntax exactly, but you can have a trace fire every time a file is opened by any process on the system. It can be done on a running system without anywhere near as much overhead as I expected it would have. If you're running solaris as an administrator, dtrace is your best friend. Even if you're not a programmer, it is quite simple to learn and a VERY powerful system query tool. | ||||
feedback
|
|
Under some unix systems, ( IE: Linux ), all files opened by a process have a FD id. These can be seen under /proc/$PID/fd
Additionally, sometimes you even get "FDINFO" ( I think this is a kernel flag on linux )
| |||
feedback
|