Overview
LiSt Open Files is a useful and powerful tool that will show you opened files. In Unix everything is a file: pipes are files, IP sockets are files, unix sockets are files, directories are files, devices are files, inodes are files...
Useful Examples
So in this tangle of files lsof listst files opened by processes running on your system.When lsof is called without parameters, it will show all the files opened by any processes.lsof | nlLet us know who is using the apache executable file, /etc/passwd, what files are opened on device /dev/hda6 or who's accessing /dev/cdrom:lsof `which apache2`
lsof /etc/passwd
lsof /dev/hda6
lsof /dev/cdromNow show us what process IDs are using the apache binary, and only the PID:lsof -t `which apache2`Show us what files are opened by processes whose names starts by "k" (klogd, kswapd...) and bash. Show us what files are opened by init:lsof -c k
lsof -c bash
lsof -c initShow us what files are opened by processes whose names starts by "courier", but exclude those whose owner is the user "zahn":lsof -c courier -u ^zahnShow us the processes opened by user apache and user zahn:lsof -u apache,zahnShow us what files are using the process whose PID is 30297:lsof +p 30297Search for all opened instances of directory /tmp and all the files and directories it contains:lsof +D /tmpList all opened internet sockets and sockets related to port 80:lsof -i
lsof -i :80List all opened Internet and UNIX domain files:lsof -i -UShow us what process(es) has an UDP connection opened to or from the host www.akadia.com at port 123 (ntp):lsof -iUDP@www.akadia.com:123lsof provides many more options and could be an unvaluable foresinc tool if your system get compromised or as daily basis check tool.
REFERENCES
http://www.akadia.com/services/lsof_intro.html