lsof
all
List open files and the corresponding processes. Note: Root privileges are required to list files opened by others.
More info →Examples (8)
Find the processes that have a given file open
lsof path/to/fileFind the process that opened a local internet port
lsof -i :portOnly output the process ID (PID)
lsof -t path/to/fileList files opened by the given user
lsof -u usernameList files opened by the given command or process
lsof -c process_or_command_nameList files opened by a specific process, given its PID
lsof -p PIDList open files in a directory
lsof +D path/to/directoryFind the process that is listening on a local IPv6 TCP port and don't convert network or port numbers
lsof -i6TCP:port -sTCP:LISTEN -n -Pmade by @shridhargupta | data from tldr-pages