2013-12-12 13:43:12 +01:00
|
|
|
# lsof
|
|
|
|
|
2013-12-12 13:45:31 +01:00
|
|
|
> Lists open files and the corresponding processes
|
2016-01-05 22:29:14 +01:00
|
|
|
> Note: In most cases, you need root privilege (or use sudo) because you want to list files opened by others
|
2013-12-12 13:43:12 +01:00
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Find the processes that have a given file open:
|
2013-12-12 13:43:12 +01:00
|
|
|
|
|
|
|
`lsof {{/path/to/file}}`
|
|
|
|
|
2016-01-07 18:31:27 +01:00
|
|
|
- Find the process that opened a local internet port:
|
2013-12-12 13:43:12 +01:00
|
|
|
|
2016-01-05 22:24:23 +01:00
|
|
|
`lsof -i :{{port}}`
|
2013-12-12 13:43:12 +01:00
|
|
|
|
2016-01-10 13:33:09 +01:00
|
|
|
- only output the process PID
|
2013-12-12 13:43:12 +01:00
|
|
|
|
2016-01-05 22:26:36 +01:00
|
|
|
`lsof -t {{/path/to/file}}`
|
2016-01-03 19:47:24 +01:00
|
|
|
|
2016-01-05 22:29:14 +01:00
|
|
|
- list files opened by the given user
|
2016-01-03 19:47:24 +01:00
|
|
|
|
|
|
|
`lsof -u {{username}}`
|
|
|
|
|
2016-01-10 13:33:09 +01:00
|
|
|
- list files opened by the given command or process
|
2016-01-03 19:47:24 +01:00
|
|
|
|
|
|
|
`lsof -c {{process_or_command_name}}`
|