How to Upgrade to Linux Kernel 4.1.1 on Ubuntu

Spread the love

Linux Kernel 4.1.1 was released earlier this week with a host of improvements and new features making it the most advanced and stable version of the 4.x LTS series.

Greg Kroah-Hartman, who released this latest version, recommended existing users of the 4.1 kernel series upgrade immediately. As the Linux Kernel 4.1.1 is an LTS version, every week a new version of Kernel 4.1.x will be released.

According to the change log, there are Brodwell-specific enhancements as well as support for ATOL FPrint fiscal printers. Also, an overflow warning with 32-bit binutils has been removed.

In addition, starting with the 4.x series, you do not have to reboot your system to update your Linux Kernel Version as a result of the implementation of the long-awaited Life Patching feature.

How to Install Linux Kernel 4.1.1

You can either download the source package from Softpedia and compile it yourself or run the following commands in your terminal to update to the latest version.

For 32-bit systems

Download the needed .deb files.

wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-headers-4.1.1-040101_4.1.1-040101.201506291635_all.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-headers-4.1.1-040101-generic_4.1.1-040101.201506291635_i386.deb
wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-image-4.1.1-040101-generic_4.1.1-040101.201506291635_i386.deb

Install them.

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

For 64-bit Systems

Download the needed .deb files.

wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-headers-4.1.1-040101_4.1.1-040101.201506291635_all.deb \
wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-headers-4.1.1-040101-generic_4.1.1-040101.201506291635_amd64.deb \
wget kernel.ubuntu.com/~kernel-ppa/mainline/v4.1.1-unstable/linux-image-4.1.1-040101-generic_4.1.1-040101.201506291635_amd64.deb

Install them.

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

You can check the current version of your Linux Kernel by typing the following command.

uname -a

If you need to uninstall this version of the Linux Kernel from your system, run this command:

sudo apt-get remove linux-header-4.1* linux-image-4.1*

Subscribe to our newsletter!

Our latest tutorials delivered straight to your inbox

Sign up for all newsletters.
By signing up, you agree to our Privacy Policy and European users agree to the data transfer policy. We will not share your data and you can unsubscribe at any time. Subscribe


Ayo Isaiah

Ayo Isaiah is a freelance writer from Lagos who loves everything technology with a particular interest in open-source software. Follow him on Twitter.

Comments (1)