5

In the Network history graph of System Monitor, network activity over Wi-Fi shows up fine, but activity over wired ethernet doesn't show up at all. Using lspci, my ethernet adapter shows up as follows:

02:00.0 Ethernet controller: Qualcomm Atheros AR8162 Fast Ethernet (rev 10)

Is there any way to fix this? To be absolutely clear, I am having no problems with the network connection itself, I just am unable to monitor its activity.

Aditya
  • 13,616

1 Answers1

4

I have a similar ethernet controller and have the same issue:

$ lspci | grep Ethernet
02:00.0 Ethernet controller: Qualcomm Atheros AR8161 Gigabit Ethernet (rev 10)

This is a bug that affects Ubuntu 13.10 and Ubuntu 14.04. The bug has been fixed in Linux Mainline Kernel v3.14 and later. So, you would need to install the mainline kernel to fix the issue.

Download the latest stable release of Mainline Build from this page. If the folder name doesn't contain the word rc in it, then it's a stable build. As of this writing the stable build is v3.14.1-trusty (this would work for Ubuntu 13.10 as well).

Download the *.deb files based on your architecture. Refer this section on Ubuntu Wiki on what you need to download. Once downloaded, open your terminal, cd to the downloaded directory and run sudo dpkg -i *.deb to install them. Then reboot to check if it works for you.

Note: You won't get automatic updates for this version of kernel. You would need to manually check the download page and install them yourself to remain updated.


Aditya
  • 13,616