tldr/pages/common/lsof.md

37 lines
753 B
Markdown
Raw Normal View History

2013-12-12 12:43:12 +00:00
# lsof
2016-01-13 11:04:46 +00:00
> Lists open files and the corresponding processes.
> Note: Root privileges (or sudo) is required to list files opened by others.
2013-12-12 12:43:12 +00:00
- Find the processes that have a given file open:
2013-12-12 12:43:12 +00:00
`lsof {{path/to/file}}`
2013-12-12 12:43:12 +00:00
- Find the process that opened a local internet port:
2013-12-12 12:43:12 +00:00
`lsof -i :{{port}}`
2013-12-12 12:43:12 +00:00
- Only output the process ID (PID):
2013-12-12 12:43:12 +00:00
`lsof -t {{path/to/file}}`
- List files opened by the given user:
`lsof -u {{username}}`
- List files opened by the given command or process:
`lsof -c {{process_or_command_name}}`
2017-03-01 09:06:32 +00:00
- List files opened by a specific process, given its PID:
2017-03-01 09:06:32 +00:00
`lsof -p {{PID}}`
- List open files in a directory:
`lsof +D {{path/to/directory}}`
- Find the process that is listening on a local TCP port:
`lsof -iTCP:{{port}} -sTCP:LISTEN`