Ubuntu Linux Kernel 3.15 installation guide

This short walkthrough describes how to install the Ubuntu linux kernel 3.15 on without compiling.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

Installation Guide (GUI)

  1. Download the kernel headers package:
    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.15-utopic/linux-headers-3.15.0-031500_3.15.0-031500.201406081435_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. So first install the headers (2 files) and finally the image (1 file).
  5. In the terminal run:
    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 3.15 branch and 3.16 release candidates in comments below.

Ubuntu Linux Kernel 3.14 installation guide

This short walkthrough describes how to install the Ubuntu linux kernel version 3.14  on without compiling.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

Installation Guide (GUI)

  1. Download the kernel headers package:
    http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.14-trusty/linux-headers-3.14.0-031400_3.14.0-031400.201403310035_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. So first install the headers and finally the image.
  5. In the terminal run:
    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 3.14 branch and 3.14 release candidates in comments below.

Ubuntu Linux Kernel 3.13 installation guide

This short walkthrough describes how to install the Ubuntu linux kernel version 3.13  on without having to compile it yourself.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

Installation Guide (GUI)

  1. Download the kernel headers package:
    linux-headers-3.13.0-031300_3.13.0-031300.201401192235_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. So first install the headers and finally the image.
  5. In the terminal run:
    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 3.13 branch and 3.14-rc`s in comments below.

Ubuntu Linux Kernel 3.12 installation guide

This short walkthrough describes how to install the linux kernel version 3.12  on Ubuntu Linux without having to compile it yourself.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

The source can be found on kernel.org

Installation Guide (GUI)

  1. Download the kernel headers package:
    linux-headers-3.12.0-031200_3.12.0-031200.201311031935_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. (Linux-headers-*all.deb, Linux-headers-*platform*.deb, Linux-image-*platform*.deb)
  5. In the terminal run:
    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

I will post the latest version of the 3.12 branch in comments below.

Ubuntu Linux Kernel 3.11 installation guide

This short walkthrough describes how to install the linux kernel version 3.11  on Ubuntu Linux without having to compile it yourself.

This guide should work with the latest version of Ubuntu Linux and most Ubuntu-based distributions including Mint. The included kernel files have been compiled using the generic Ubuntu configuration.

The source can be found on www.kernel.org

I will post the latest version of the 3.11 branch in comments below.

Installation Guide (GUI)

  1. Download the kernel headers package: linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
  2. And the appropriate package for your system
  3. And the accompanying compiled kernel image
  4. Install the files in the same order as downloaded above. (Linux-headers-*all.deb, Linux-headers-*platform*.deb, Linux-image-*platform*.deb)
  5. In the terminal run:
    sudo update-grub
  6. Reboot and select the kernel from the bootloader menu

Installation Guide (terminal) for 32 bits

mkdir tmp
cd tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100-generic_3.11.0-031100.201309021735_i386.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-image-3.11.0-031100-generic_3.11.0-031100.201309021735_i386.deb
sudo dpkg -i *.deb
sudo update-grub

Installation Guide (terminal) for 64 bits

mkdir tmp
cd tmp
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100_3.11.0-031100.201309021735_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-headers-3.11.0-031100-generic_3.11.0-031100.201309021735_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.11-saucy/linux-image-3.11.0-031100-generic_3.11.0-031100.201309021735_amd64.deb
sudo dpkg -i *.deb
sudo update-grub