How To Install Kernel 4.0.2 On Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04 And Derivative Systems

Hello Linux Geeksters. As you may know, Linus Torvalds has released the stable version of Kernel 4.0.2.

Watch Free Movies

The new kernel patch comes with driver updates for Bluetooth, SCSI, USB and ACPI, enhanced NFS and EXT4, and improvements for the ARM64 and PowerPC architectures.

Besides updated drivers, support for new devices and filesystem enhancements, it also brings the long awaited Life Patching feature, which permits the users to update the kernel without having to reboot the system. While this is not important for regular users, this feature is very good for Linux servers.

In this article I will show you how to install Kernel 4.0.2 on Ubuntu 15.04 Vivid Vervet, Ubuntu 14.10 Utopic Unicorn, Ubuntu 14.04 Trusy Tahr, Linux Mint 17 Qiana, Pinguy OS 14.04, LXLE 14.04, Peppermint Five, Deepin 2014, Linux Lite 2, Elementary OS 0.3 Freya and other Ubuntu derivative systems.

Because it is not available via PPA, the needed deb packages of Kernel 4.0.2  are available via kernel.ubuntu.com. Follow the instructions for your system’s architecture exactly, in order to get a successful installation.

How to install Kernel 4.0.2 on 32 bit Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04 and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-headers-4.0.2-040002_4.0.2-040002.201505081529_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-headers-4.0.2-040002-generic_4.0.2-040002.201505081529_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-image-4.0.2-040002-generic_4.0.2-040002.201505081529_i386.deb

Install Kernel 4.0.2:

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

Optional, remove the kernel:

$ sudo apt-get remove linux-header-4.0* linux-image-4.0*

How to install Kernel 4.0.2 on 64 bit Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04 and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-headers-4.0.2-040002_4.0.2-040002.201505081529_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-headers-4.0.2-040002-generic_4.0.2-040002.201505081529_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.2-wily/linux-image-4.0.2-040002-generic_4.0.2-040002.201505081529_amd64.deb

Install Kernel 4.0.2:

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

Optional, remove the kernel:

$ sudo apt-get remove linux-header-4.0* linux-image-4.0*

Scroll to Top