4

I am using 16.04.2 and I made hwe upgrade(4.8) of kernel and xorg using:

sudo apt-get install --install-recommends linux-image-generic-hwe-16.04 xserver-xorg-hwe-16.04

I have cleaned the previous kernel left overs as best as I could but I still see the following:

ii  linux-libc-dev:amd64                        4.4.0-64.85                                   amd64        Linux Kernel Headers for development
ii  linux-tools-4.4.0-64                        4.4.0-64.85                                   amd64        Linux kernel version specific tools for version 4.4.0-64
ii  linux-tools-4.4.0-64-generic                4.4.0-64.85                                   amd64        Linux kernel version specific tools for version 4.4.0-64
ii  linux-tools-common                          4.4.0-64.85                                   all          Linux kernel version specific tools for version 4.4.0
ii  linux-tools-virtual                         4.4.0.64.68                                   amd64        This package will always depend on the latest minimal generic kernel tools.

I read here that these linux-tools packages are required by TLP program. I use TLP in its default mode. I also read linux-libc-dev package is required for compiling drivers like Nvidia.

So do I need to upgrade them to their hwe versions(4.8)? If yes, how do I do that?

Thanks

1 Answers1

1

You can install the 4.8 linux-tools by

sudo apt install linux-tools-generic-hwe-16.04 linux-tools-virtual-hwe-16.04

The linux-libc-dev should stay this version. It is not upgraded in 16.04.2.

That will install linux-tools packages that should match the running kernel version.

Also you can remove linux-image, linux-headers and linux-tools packages of the 4.4 version using e.g. synaptic if you are sure you won't use those kernels.

Pilot6
  • 92,041