From 3b226d19bb19a87eb565f3e1d16e14f446b56e76 Mon Sep 17 00:00:00 2001 From: johannst Date: Tue, 27 Aug 2024 22:25:00 +0000 Subject: deploy: 9b47b98b7c5efce0bf50d57aa5d7e374bcbabf23 --- monitor/lsof.html | 286 ------------------------------------------------------ 1 file changed, 286 deletions(-) delete mode 100644 monitor/lsof.html (limited to 'monitor/lsof.html') diff --git a/monitor/lsof.html b/monitor/lsof.html deleted file mode 100644 index 22ccfcc..0000000 --- a/monitor/lsof.html +++ /dev/null @@ -1,286 +0,0 @@ - - - - - - lsof - Notes - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - - - - - - - - - - - - - - - - - -
- -
- - - - - - - - -
-
-

lsof(8)

-
lsof
-  -r <s> ..... repeatedly execute command ervery <s> seconds
-  -a ......... AND slection filters instead ORing (OR: default)
-  -p <pid> ... filter by <pid>
-  +fg ........ show file flags for file descripros
-  -n ......... don't convert network addr to hostnames
-  -P ......... don't convert network port to service names
-  -i <@h[:p]>. show connections to h (hostname|ip addr) with optional port p
-  -s <p:s> ... in conjunction with '-i' filter for protocol <p> in state <s>
-  -U ......... show unix domain sockets ('@' indicates abstract sock name, see unix(7))
-
-
file flags:
-  R/W/RW ..... read/write/read-write
-  CR ......... create
-  AP ......... append
-  TR ......... truncate
-
-
-s protocols
-  TCP, UDP
-
--s states (TCP)
-  CLOSED, IDLE, BOUND, LISTEN, ESTABLISHED, SYN_SENT, SYN_RCDV, ESTABLISHED,
-  CLOSE_WAIT, FIN_WAIT1, CLOSING, LAST_ACK, FIN_WAIT_2, TIME_WAIT
-
--s states (UDP)
-  Unbound, Idle
-
-

Examples

-

File flags

-

Show open files with file flags for process:

-
lsof +fg -p <pid>
-
-

Open TCP connections

-

Show open tcp connections for $USER:

-
lsof -a -u $USER -i TCP
-
-

Note: -a ands the results. If -a is not given all open files matching -$USER and all tcp connections are listed (ored).

-

Open connection to specific host

-

Show open connections to localhost for $USER:

-
lsof -a -u $USER -i @localhost
-
-

Open connection to specific port

-

Show open connections to port :1234 for $USER:

-
lsof -a -u $USER -i :1234
-
-

IPv4 TCP connections in ESTABLISHED state

-
lsof -i 4TCP -s TCP:ESTABLISHED
-
-

List open files in a mounted directory.

-

This may help to find which processes keep devices busy when trying to unmount -and the device is currently busy.

-
# Assuming /proc is a mount point.
-lsof /proc
-
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - -
- - -- cgit v1.2.3