How to install Kernel 4.11.12

SlaSerX
  6 years ago
  -1

Installation instructions:

Because it is very difficult to compile a Linux kernel, Canonical has packed all the kernel releases as deb packages and made them available for everybody that uses Ubuntu or Ubuntu-based systems, via its kernel.ubuntu.com repository.

The below commands are available for all the Ubuntu, Linux Mint, Elementary OS and other derivative systems.

For 32 bit systems, download and install the i386 debs. For 64 bit systems, download and install the amd64 packages:

How to install Kernel 4.11.x on 32 bit Ubuntu and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-headers-4.11.12-041112_4.11.12-041112.201707210350_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-headers-4.11.12-041112-generic_4.11.12-041112.201707210350_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-image-4.11.12-041112-generic_4.11.12-041112.201707210350_i386.deb

Install the Kernel:

$ sudo dpkg -i linux-headers-4.11*.deb linux-image-4.11*.deb

Optional, remove the kernel:

$ sudo apt-get remove linux-headers-4.11* linux-image-4.11*

How to install Kernel 4.11.x on 64 bit Ubuntu and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-headers-4.11.12-041112_4.11.12-041112.201707210350_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-headers-4.11.12-041112-generic_4.11.12-041112.201707210350_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.11.12/linux-headers-4.11.12-041112-lowlatency_4.11.12-041112.201707210350_amd64.deb

Install the Kernel:

$ sudo dpkg -i linux-headers-4.11*.deb linux-image-4.11*.deb

Optional, remove the kernel:

$ sudo apt-get remove linux-headers-4.11* linux-image-4.11*

 
Comments
remoulder 6 years ago

There are already multiple posts suggesting the use of mainline kernels - these kernels are for developers not for end users and may cause problems.