How can I check which applications are using internet? How to block internet accessing one particular application? Is there any GUI tool that exist for it in Ubuntu Software Centre? Thanks in advance!
How can I check which applications are using internet? How to block internet accessing one particular application? Is there any GUI tool that exist for it in Ubuntu Software Centre? Thanks in advance!
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:
Source: Show apps that use internet connection at the moment (Multi-Language).
To see which application is using data, try the NetHogs application from the eponymous package
nethogs
in Ubuntu’s “Universe” repository or from source.In addition to
lsof -i
which will list applications that have open network sockets as Richard mentioned, you can also installufw
andgufw
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.You can get the list of listening applications by using UFW using the following command.