0

Three systems, two show ls /boot config-6.2.0-33-generic config-6.2.0-34-generic, The third shows config-6.2.0-32-generic config-6.2.0-33-generic. uname -sr is still Linux 6.2.0-33-generic.

I have rebooted third computer and run sudo apt update && sudo apt upgrade repeated times, but no new kernel is installed. All computers are running Ubuntu 22.04 at

Linux ace 6.2.0-33-generic #33~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Thu Sep 7   
10:33:52 UTC 2 x86_64 x86_64 x86_64 GNU/Linux

The latest kernel version 6.2.0-34 is installed on two of the three computers. The repository sources lists are the same.

karel
  • 122,292
  • 133
  • 301
  • 332
jamby
  • 7

2 Answers2

1

You need to run full-upgrade on the third computer to upgrade kernel:

sudo apt update && sudo apt full-upgrade

You should probably look into configuring unattended-upgrades to perform kernel updates.

Artur Meinild
  • 31,035
0

Thanks Artur Meinild, unfortunately sudo apt update && sudo apt full-upgrade didn't fix it.

However, I did find this command:

sudo apt install linux-generic-hwe-22.04

That caused the installation of several new linux-headers including Linux 6.2.0-34-generic. So now the system is up to date.

Thomas Ward
  • 78,878
jamby
  • 7