lsof
LiSt Open Files
Internet(この場合 tcpでのportで)通信してるのは lsof -i -nP
-i(internet) と -nPは分離してる必要がある。(nPは表示のためにsnapshotを取るみたいなオプションかな)
$ lsof --help
$ man losf
は、一度は眺めておく。
-i :port( 具体的な数字を指定しないと全部がでる)
-t path
-u username
-c procee_name or command_name
-p pid
+D directory
-n inhibits the conversion of network numbers to host names for network files.
英語がわからない。ただ、-nをつけないと lsofが終了しないので、表示のために、ネットワークの通信を一旦とめるみたいな意味かな。
-P inhibits the conversion of port numbers to port names for network files. Inhibiting the conversion may make lsof run a little faster. It is also useful when port name lookup is not working properly.
これも、-nと同様のいみかな。