Sometimes I can see heavy usage of network in my Gnome System Monitor. I wonder what process is downloading/uploading data. Is there any tool which can show me:
- what processes are using the Internet
- a dynamic real-time view of the download/upload speed of these processes
- the details of the connections (e.g. the remote IP, the port number, etc.)
My system is Ubuntu 10.10.
I tried lsof
but the output looks so NOT friendly. Maybe there are some tricks to use it? Or there are better alternatives?
netstat --inet -ap
will show you what processes are using the internet and what host/port each process is using. If you want IP addresses and not hostnames, use-n
. (--inet
shows only internet sockets,-a
shows both listening and connection sockets,-p
shows process name/ID information). You'll probably want to run it withsudo
so that it can give you information about all processes.nethogs
will show you how much bandwidth each process is using, but it doesn't tell you what host each process is connecting to.ntop is a bit heavy, but gives you an overview of network traffic in general.
(netstat is installed by default and nethogs and ntop are available in Ubuntu's repos)
As far I know there's no single utility that puts 1, 2, and 3 together.
Nethogs can handle your first two requests. Iftop can handle the third. You may need to press p in iftop to show the port number.
For lsof use
lsof -i
.You can also query active connections for each process using
netstat -punta
run as root to show process names or without to show only PIDs. To get a dynamic real-time view you can easily trick your way around using watch ->watch -n1 netstat -punta
(same goes for iftop).As for alternatives you can use ntop + iftop.
iftop
is equivalent totop
for processes, which shows everything, you can pressp
to toggle to show port.Check out netstat -p, though I don't know if you'll find the output much friendlier than lsof. It also won't meet your second requirement.