Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 linux 中,如何获取当前从 Internet 连接(并正在接收数据)的程序列表?
iftop 之类的命令很好,但不会显示基于进程的统计信息。
netstat将向您显示所有已建立的连接。使用-p它来显示与每个相关的过程。但是,它不会向您显示有关他们收到的数据量的任何信息。
netstat
-p
您可以使用 lsof 实用程序列出有关进程打开的文件的信息
lsof -i
将仅显示使用过的互联网资源