I installed initially 22.04.1 (in 2022), and did all updates.
But, the kernel is still 5.15.0-94 while 22.04.3 comes with kernel 6.2...
And lsb_release -a
says
No LSB modules are available.
Distributor ID: Ubuntu
Description: Ubuntu 22.04.3 LTS
Release: 22.04
Codename: jammy
This question seem to address a similar issue, but their kernel is 6.2!
Did I miss a step to get the new kernel(s)?
What can I do to keep 22.04 and have the new kernel 6.2 (safely)?
edit
[root@here ~/]# dpkg --get-selections | grep '^linux' | grep -vw deinstall
linux-base install
linux-firmware install
linux-generic install
linux-headers-5.15.0-92 install
linux-headers-5.15.0-92-generic install
linux-headers-5.15.0-94 install
linux-headers-5.15.0-94-generic install
linux-headers-generic install
linux-image-5.15.0-92-generic install
linux-image-5.15.0-94-generic install
linux-image-generic install
linux-libc-dev:amd64 install
linux-modules-5.15.0-92-generic install
linux-modules-5.15.0-94-generic install
linux-modules-extra-5.15.0-92-generic install
linux-modules-extra-5.15.0-94-generic install
linux-sound-base install
dpkg --get-selections | grep '^linux'
. Have you tried switching tolinux-image-generic-hwe-22.04
? – Daniel T Feb 11 '24 at 15:45sudo apt install linux-generic-hwe-22.04
should work. Then after rebooting and verifying, you can removelinux-generic
if you want – Daniel T Feb 11 '24 at 15:51