0

I hope the 4.15 kernel is out soon.

My PC got bricked by the Intel related updates to the Kernel.

How do I upgrade to Ubuntu's latest mainline (stable) kernel version 4.14.13?

THIS DOESN'T WORK:

wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.13/linux-headers-4.14.13-041413_4.14.13-041413.201801101001_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.13/linux-headers-4.14.13-041413-generic_4.14.13-041413.201801101001_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.14.13/linux-image-4.14.13-041413-generic_4.14.13-041413.201801101001_amd64.deb

Step 2: After successfully downloading install it

sudo dpkg -i linux-headers-4.14.13-* linux-image-4.14.13-* .deb

Step 3: Verify installed Version

mrsteve
  • 169
  • 1
  • 6

1 Answers1

4

The command line to install the kernel image has an empty space before the ".deb", enter the following line instead:

sudo dpkg -i linux-headers-4.14.13-* linux-image-4.14.13-*.deb
Zanna
  • 70,465
  • 1
    I should mention there are easier ways than using wget in CLI which your answer doesn't touch on. ie: https://askubuntu.com/questions/879888/how-do-i-update-kernel-to-the-latest-mainline-version/879920#879920 – WinEunuuchs2Unix Jan 14 '18 at 19:21
  • Both methods don't work reliably in the current Meltdown/Spectre mess. I think this discussion is better suited on reddit.com – mrsteve Jan 15 '18 at 18:52