1

When I have no browser opened and no updates, or any other files under downloading, System Monitor still shows non-zero Receiving rate as shown below. Why? enter image description here

Naghi
  • 157
  • 1
    It can be interesting to find out where all these connections are coming from. Install tcpdump and run it for a while; figure out what standard port numbers are used for. Most outgoing traffic will be ARP packets going out to the LAN. – Jos Apr 29 '20 at 09:11

1 Answers1

2

Network activity comes from a variety of processes, and not just your web browser. On my machine right now I see activity from an email client, file sync, music streaming, and more. System updates, clock synchronisation, error reporting, and other background processes also use data.

To track which application is sending or receiving network traffic, try the nethogs package.

To install:

sudo apt install nethogs

To use:

sudo nethogs

To exit nethogs press q.

Tom Brossman
  • 13,111