Which applications are using internet

lsof -i will list the applications that are accessing the network. There are some helpful examples in the man page but you might also want to look at Track network connections with LSOF on Linux.


I found very useful next command that show only the names of applications that use internet connection (create internet traffic) at the moment:

netstat -lantp | grep -i stab | awk -F/ '{print $2 $3}' | sort | uniq

Source: Show apps that use internet connection at the moment (Multi-Language).


In addition to lsof -i which will list applications that have open network sockets as Richard mentioned, you can also install ufw and gufw which are the Uncomplicated FireWall and the GUI program that manages it. I haven't used either of these since 8.04 since I mostly use ubuntu internal to my own network, but they should have options for that. iptables is also a very popular firewall.