sudo apt-get update && sudo apt-get dist-upgrade
do not show the newest kernel.
How can I install 3.16 kernel on 14.04?
sudo apt-get update && sudo apt-get dist-upgrade
do not show the newest kernel.
How can I install 3.16 kernel on 14.04?
Now that 14.10 has been released, there is an easier and better way to get 3.16 on Ubuntu 14.04:
sudo apt-get install linux-image-generic-lts-utopic
This package will always depend on the latest 3.16 image available. (This method may not have been ready at the time of this article.)
sudo apt-get install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic libgl1-mesa-glx-lts-utopic libegl1-mesa-drivers-lts-utopic
– Thiago Macedo
Mar 03 '15 at 02:10
sudo apt-get install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic libgl1-mesa-glx-lts-utopic libegl1-mesa-drivers-lts-utopic libwayland-egl1-mesa-lts-utopic
.
– Chef Pharaoh
Jun 23 '20 at 23:26
To install the latest kernel you can always visit kernel.ubuntu.com to see what's going on.
To install the latest 3.16 kernel all you need to do is:
cd /tmp
for 32bit:
wget \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb
for 64bit:
wget \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_amd64.deb \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb \
http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-lowlatency_3.16.0-031600.201408031935_amd64.deb
then, making sure you have no other .deb
s in /tmp
sudo dpkg -i *.deb
then
sudo reboot
sources.list
and its key, what do I need to do?
– Oxwivi
Sep 17 '14 at 11:38
generic
kernel will work fine, only use lowlatency
if you need it. Overall performance will be worse on some systems if you use lowlatency
.
– John
Nov 08 '14 at 03:40
cd /tmp && wget \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-generic_3.16.0-031600.201408031935_i386.deb && sudo dpkg -i *.deb && sudo reboot
– codenamejames
Nov 21 '14 at 05:42
cd /tmp && wget \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600-generic_3.16.0-031600.201408031935_amd64.deb \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-headers-3.16.0-031600_3.16.0-031600.201408031935_all.deb \ http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.16-utopic/linux-image-3.16.0-031600-lowlatency_3.16.0-031600.201408031935_amd64.deb && sudo dpkg -i *.deb && sudo reboot
– codenamejames
Nov 21 '14 at 05:43
I do recommend using the linux-image-generic-lts-utopic
or whatever newer made available for Ubuntu 14.04 LTS.
Try avoid mixing release repositories, it may break things.
If linux-image-generic-lts-$(lsb_release -sc)
is NOT new enough for you, try the Ubuntu Kernel mainline archive (manually download and install) http://kernel.ubuntu.com/~kernel-ppa/mainline/
NOTE: the drawback of using mainline kernel is that you may not be able to compile drivers or things like VirtualBox won't work with the cutting edge kernel. Last but not least, ksplice (uptrack) won't work with mainline kernels anyway (uptrack does support newer kernel from later releases on current LTS).
I started with Ubuntu 14.04.1 (kernel 3.13) and wanted to get only the 3.16 kernel and HWE stack. Run the following command:
sudo apt-get install --install-recommends linux-generic-lts-utopic xserver-xorg-lts-utopic xserver-xorg-core-lts-utopic xserver-xorg-input-all-lts-utopic xserver-xorg-video-all-lts-utopic libgl1-mesa-glx-lts-utopic libegl1-mesa-drivers-lts-utopic libwayland-egl1-mesa-lts-utopic
Add the kernel headers if you want too by adding linux-headers-generic-lts-utopic
to the above command.
Or just download the 14.04.2 image from Ubuntu release archives. XD
If you’re impatient and — most importantly — skilled enough, you can install Linux 3.16 in Ubuntu 14.04 LTS using the corresponding installers for your system listed in the Mainline kernel archive maintained by Canonical." http://www.omgubuntu.co.uk/2014/08/linux-kernel-3-16-changes-drivers
– amanthethy Aug 05 '14 at 03:05