2013-12-12 12:43:12 +00:00
|
|
|
# lsof
|
|
|
|
|
2016-01-13 11:04:46 +00:00
|
|
|
> Lists open files and the corresponding processes.
|
2017-04-22 19:44:03 +01:00
|
|
|
> Note: Root privileges (or sudo) is required to list files opened by others.
|
2021-09-23 19:34:23 +01:00
|
|
|
> More information: <https://manned.org/lsof>.
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Find the processes that have a given file open:
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2017-08-17 13:08:23 +01:00
|
|
|
`lsof {{path/to/file}}`
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Find the process that opened a local internet port:
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2016-01-05 21:24:23 +00:00
|
|
|
`lsof -i :{{port}}`
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2017-04-22 19:44:03 +01:00
|
|
|
- Only output the process ID (PID):
|
2013-12-12 12:43:12 +00:00
|
|
|
|
2017-08-17 13:08:23 +01:00
|
|
|
`lsof -t {{path/to/file}}`
|
2016-01-03 18:47:24 +00:00
|
|
|
|
2016-01-28 06:35:41 +00:00
|
|
|
- List files opened by the given user:
|
2016-01-03 18:47:24 +00:00
|
|
|
|
|
|
|
`lsof -u {{username}}`
|
|
|
|
|
2016-01-28 06:35:41 +00:00
|
|
|
- List files opened by the given command or process:
|
2016-01-03 18:47:24 +00:00
|
|
|
|
|
|
|
`lsof -c {{process_or_command_name}}`
|
2017-03-01 09:06:32 +00:00
|
|
|
|
2017-04-22 19:44:03 +01:00
|
|
|
- List files opened by a specific process, given its PID:
|
2017-03-01 09:06:32 +00:00
|
|
|
|
|
|
|
`lsof -p {{PID}}`
|
2017-08-17 13:08:23 +01:00
|
|
|
|
|
|
|
- List open files in a directory:
|
|
|
|
|
|
|
|
`lsof +D {{path/to/directory}}`
|
2019-08-20 19:13:45 +01:00
|
|
|
|
2021-11-10 21:45:45 +00:00
|
|
|
- Find the process that is listening on a local IPv6 TCP port and don't convert network or port numbers:
|
2019-08-20 19:13:45 +01:00
|
|
|
|
2021-11-10 21:45:45 +00:00
|
|
|
`lsof -i6TCP:{{port}} -sTCP:LISTEN -n -P`
|