I can also confirm that Ubuntu 20.04.1 upgraded to Linux 5.8.0-34.
$ cat /etc/os-release
NAME="Ubuntu"
VERSION="20.04.1 LTS (Focal Fossa)"
...
$ inxi -r
Repos: Active apt repos in: /etc/apt/sources.list
1: deb http://hr.archive.ubuntu.com/ubuntu/ focal main restricted
2: deb http://hr.archive.ubuntu.com/ubuntu/ focal-updates main restricted
3: deb http://hr.archive.ubuntu.com/ubuntu/ focal universe
4: deb http://hr.archive.ubuntu.com/ubuntu/ focal-updates universe
5: deb http://hr.archive.ubuntu.com/ubuntu/ focal multiverse
6: deb http://hr.archive.ubuntu.com/ubuntu/ focal-updates multiverse
7: deb http://hr.archive.ubuntu.com/ubuntu/ focal-backports main restricted universe multiverse
8: deb http://archive.canonical.com/ubuntu focal partner
9: deb http://security.ubuntu.com/ubuntu focal-security main restricted universe multiverse
In /var/log/apt/term.log I can find the following:
Selecting previously unselected package linux-image-5.8.0-34-generic.
Preparing to unpack .../46-linux-image-5.8.0-34-generic_5.8.0-34.37~20.04.2_amd64.deb ...
Unpacking linux-image-5.8.0-34-generic (5.8.0-34.37~20.04.2) ...
apt-cache shows the following about the new kernel package:
$ apt-cache showpkg linux-image-5.8.0-34-generic
Package: linux-image-5.8.0-34-generic
Versions:
5.8.0-34.37~20.04.2 (/var/lib/apt/lists/hr.archive.ubuntu.com_ubuntu_dists_focal-updates_main_binary-amd64_Packages) (/var/lib/apt/lists/security.ubuntu.com_ubuntu_dists_focal-security_main_binary-amd64_Packages) (/var/lib/dpkg/status)
...
So, it seems the new kernel came from an official repository. See also:
https://packages.ubuntu.com/focal/linux-image-5.8.0-34-generic
https://packages.ubuntu.com/focal-updates/linux-image-5.8.0-34-generic
My problem is that the Ubuntu desktop environment (GNOME) fails to start after the Linux kernel upgrade. With Linux 5.4.0-59-generic it works fine.
As suggested by guiverc I removed support for HWE stack on Ubuntu 20.04. The following articles were useful in that regard:
Disable HWE and continue with GA kernal of 16.04?
https://wiki.ubuntu.com/Kernel/LTSEnablementStack
$ sudo apt install linux-generic
$ sudo apt remove linux-image-5.8.0-34-generic linux-headers-5.8.0-34-generic linux-modules-5.8.0-34-generic linux-modules-extra-5.8.0-34-generic linux-hwe-5.8-headers-5.8.0-34 linux-generic-hwe-20.04
After reboot the system is back on Linux 5.4.0-59-generic and "apt update" does not offer upgrade to Linux 5.8 any more.
linux-generic-hwe-20.04
is a mystery to me. It was pointing to the same driver aslinux-generic
till today and could't fix anything. I have around 10 computers with 20.04 and none had the hwe meta. I have one with a Ryzen and was waiting for this switch to remove theedge
. It's very strange. I don't see that the 20.04.1 image has it. – Pilot6 Jan 07 '21 at 13:00sudo apt install linux-generic linux-generic-hwe-20.04-
(Sorry I've nothing to test it on, nor a box to look at what is installed & thus what issues you may experience, as no focal boxes I have have HWE kernels) thanks @sarnold – guiverc Jan 08 '21 at 01:25