如何获取运行top
命令时列出的端口?我获取了有关进程的信息,但我需要查看端口(进程死得非常快,0 秒,之后我无法查看grep
)ps aux
。top 命令是否能够显示绑定到进程的端口?
答案1
如果您想查看哪些进程绑定到哪些端口,请使用netstat
:
sudo netstat -p
标志:
p - Show the PID and process name of the application that owns each socket
如何获取运行top
命令时列出的端口?我获取了有关进程的信息,但我需要查看端口(进程死得非常快,0 秒,之后我无法查看grep
)ps aux
。top 命令是否能够显示绑定到进程的端口?
如果您想查看哪些进程绑定到哪些端口,请使用netstat
:
sudo netstat -p
标志:
p - Show the PID and process name of the application that owns each socket