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-03 19:47:24 +01:00
|
|
|
> Note: In most case, you need root privilege (or sudo) because you want to list files opened by other than you.
|
2013-12-12 13:43:12 +01:00
|
|
|
|
|
|
|
- find the processes that have a given file open
|
|
|
|
|
|
|
|
`lsof {{/path/to/file}}`
|
|
|
|
|
|
|
|
- find the process that opened a local internet port
|
|
|
|
|
|
|
|
`lsof -i :{{8080}}`
|
|
|
|
|
|
|
|
- only output the process PID (e.g. to pipe into kill)
|
|
|
|
|
|
|
|
`lsof -t {{/path/to/file}} | xargs kill -9`
|
2016-01-03 19:47:24 +01:00
|
|
|
|
|
|
|
- list files opened by user
|
|
|
|
|
|
|
|
`lsof -u {{username}}`
|
|
|
|
|
|
|
|
- list files opened by command (or process) name (e.x nginx)
|
|
|
|
|
|
|
|
`lsof -c {{process_or_command_name}}`
|