2013-12-12 16:43:12 +04:00
|
|
|
# lsof
|
|
|
|
|
2016-01-13 14:04:46 +03:00
|
|
|
> Lists open files and the corresponding processes.
|
2017-04-22 21:44:03 +03:00
|
|
|
> Note: Root privileges (or sudo) is required to list files opened by others.
|
2013-12-12 16:43:12 +04:00
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Find the processes that have a given file open:
|
2013-12-12 16:43:12 +04:00
|
|
|
|
|
|
|
`lsof {{/path/to/file}}`
|
|
|
|
|
2016-01-07 20:31:27 +03:00
|
|
|
- Find the process that opened a local internet port:
|
2013-12-12 16:43:12 +04:00
|
|
|
|
2016-01-06 00:24:23 +03:00
|
|
|
`lsof -i :{{port}}`
|
2013-12-12 16:43:12 +04:00
|
|
|
|
2017-04-22 21:44:03 +03:00
|
|
|
- Only output the process ID (PID):
|
2013-12-12 16:43:12 +04:00
|
|
|
|
2016-01-06 00:26:36 +03:00
|
|
|
`lsof -t {{/path/to/file}}`
|
2016-01-03 21:47:24 +03:00
|
|
|
|
2016-01-28 09:35:41 +03:00
|
|
|
- List files opened by the given user:
|
2016-01-03 21:47:24 +03:00
|
|
|
|
|
|
|
`lsof -u {{username}}`
|
|
|
|
|
2016-01-28 09:35:41 +03:00
|
|
|
- List files opened by the given command or process:
|
2016-01-03 21:47:24 +03:00
|
|
|
|
|
|
|
`lsof -c {{process_or_command_name}}`
|
2017-03-01 12:06:32 +03:00
|
|
|
|
2017-04-22 21:44:03 +03:00
|
|
|
- List files opened by a specific process, given its PID:
|
2017-03-01 12:06:32 +03:00
|
|
|
|
|
|
|
`lsof -p {{PID}}`
|