I had this same problem and it turned out that after the kernel was updated, the necessary drivers that supported my motherboard ethernet (qualcomm atheros killer e220x) or either of my USB Ethernet dongles was no longer in the system (AXIS chipsets). Ultimately I found a thread that suggested I needed the ALX driver and when I tried to use modprobe to install it it could not find it.
I did a locate on 'alx' and it showed up in /lib/modules//kernel/drivers/net/ethernet/... for my older 4.4.0-130 kernel, but not for my newer 4.4.0-133 kernel.
I looked all over the web for where to get the alx drivers and they are not available except perhaps as a back-port. I welcome input from anybody who can add to this comment where they are at and how to download/build/install them for the 4.4.0-133 kernel.
Utlimately I reboooted the system, selected "Advanced booting....", picked the 4.4.0-130-generic kernel and booted with that and immediately all the drivers installed and I got my ethernet back.
I had been doing system updates for a while before reboot. No issues because I was still running the older kernel. Then one day had to reboot and when it came back my Internet was gone.
I hope this helps get someone on the right path and anybody who can contribute is totally welcome to do so, I have no ego... I would like to be able to use a newer kernel. I don't know why it stopped installing my ax and alx drivers. The kernel header files are there but the /lib/modules/uname -r
/... is missing.
Changing the default boot kernel on grub is shown here:
Set "older" kernel as default grub entry
You can find the menu names by looking through this file: /boot/grub/grub.cfg
sudo apt-get update
does not upgrade any software, it only updates the lists of software found in repositories, allowing you & your system to know upgrades are available (or no changes have been made). The lists are just text; and it's other commands that usually follow the 'update' that upgrade packages (such as upgrade, dist-upgrade etc) – guiverc Oct 04 '18 at 11:13sudo apt-get dist-upgrade
aftersudo apt-get update
. Updating the description for better clarity. Thanks – Amarjeet Kaur Oct 05 '18 at 04:50