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 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
  • 72,312