0

I have a question with linux-generic.

I installed linux-generic, but it did not match with kernel which was installed on my pc.

When I checked linux-generic version using dpkg -l, it showed 5.15.0.92.89. But, installed (uname -r) is 6.5.0-15-generic.

ii  linux-generic                              5.15.0.92.89                                amd64        Complete Generic Linux kernel and headers
ii  linux-headers-5.15.0-72                    5.15.0-72.79                                all          Header files related to Linux kernel version 5.15.0
ii  linux-headers-5.15.0-72-generic            5.15.0-72.79                                amd64        Linux kernel headers for version 5.15.0 on 64 bit x86 SMP
ii  linux-headers-5.15.0-92                    5.15.0-92.102                               all          Header files related to Linux kernel version 5.15.0
ii  linux-headers-5.15.0-92-generic            5.15.0-92.102                               amd64        Linux kernel headers for version 5.15.0 on 64 bit x86 SMP

I want to keep linux-generic to match with uname -r. Actually my machine was manually upgraded from ubuntu 20.04 to ubuntu 22.04.

Are there more steps to update linux-generic version?

1 Answers1

1

In video games, there's a concept of player confusion: A person is mistakenly tracking Player 1 while actually controlling Player 2.

You are likely watching one kernel metapackage (linux-generic) while actually using a different metapackage (linux-generic-hwe-22.04)

In Ubuntu 22.04, as of today (it changes over time):

linux-generic           | 5.15.0.92.89           | jammy-updates
linux-image-generic     | 5.15.0.92.89           | jammy-updates  (GA kernel)
linux-generic-hwe-22.04 | 6.5.0.15.15~22.04.8    | jammy-updates  (HWE kernel)

One answer is to start watching the metapackage that you are actually using.

Another answer is to change kernels (and metapackages) if you are not using the one you really want.

user535733
  • 68,493