This Tutorial will be helpful for Installing the Latest verison of Kernel 3.13.6 On Ubuntu / LinuxMint / Debian systems. The Latest ve...
This Tutorial will be helpful for Installing the Latest verison of Kernel 3.13.6 On Ubuntu / LinuxMint / Debian systems.
The Latest version of Kernel is 3.13.6 and it is released on 7th March 2014
Installation steps
Step 1: Download the Latest version of Kernel form the Kernel.ubuntu.com,two ways to download the deb file
Direct or use wget
If you want to download using wget copy the below commands and paste it in terminal one by one according to your cpu architecture
For 32 bit systems
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-headers-3.13.6-031306_3.13.6-031306.201403070154_all.deb
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-headers-3.13.6-031306-generic_3.13.6-031306.201403070154_i386.deb
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-image-3.13.6-031306-generic_3.13.6-031306.201403070154_i386.deb
For 64 bit systems
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-headers-3.13.6-031306_3.13.6-031306.201403070154_all.deb
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-headers-3.13.6-031306-generic_3.13.6-031306.201403070154_amd64.deb
wget -c kernel.ubuntu.com/~kernel-ppa/mainline/v3.13.6-trusty/linux-image-3.13.6-031306-generic_3.13.6-031306.201403070154_amd64.deb
Step 2: After successfull downloading install it
sudo dpkg -i *.deb
Step 3:Verify installed Version
After successfull installation reboot the system and type in the terminal
uname -r
(It will display the current active kernel version)
Uninstall Kernel 3.13.6
For removing the Kernel 3.13.6 run the below command in terminal
sudo apt-get remove linux-headers-3.13.6-* linux-image-3.13.6*-
COMMENTS