diff --git a/cheat/cheatsheets/lsof b/cheat/cheatsheets/lsof index 5e54960..8d11e3f 100644 --- a/cheat/cheatsheets/lsof +++ b/cheat/cheatsheets/lsof @@ -4,16 +4,16 @@ sudo lsof -i4 # List all IPv6 network files sudo lsof -i6 -# To find listening ports -lsof -Pnl +M -i4 - -# To list all open sockets +# List all open sockets lsof -i -# To find which program is using the port 80 +# List all listening ports +lsof -Pnl +M -i4 + +# Find which program is using the port 80 lsof -i TCP:80 -# To show connections to a specific host +# List all connections to a specific host lsof -i@192.168.1.5 # List all processes accessing a particular file/directory @@ -28,7 +28,7 @@ lsof -c # List all files a process has open lsof -p -# Lists all files open mounted at /mount/point. +# List all files open mounted at /mount/point. # Particularly useful for finding which process(es) are using a # mounted USB stick or CD/DVD. lsof +f --