Saturday, 21 September 2024
Application How To's

How to Install or Upgrade Kernel 3.19.3 [Stable] on Ubuntu/ElementaryOS and Linux Mint

Hello guyz two days ago the third release of Linux Kernel 3.19.3 was already released by Greg Kroah-Hartman, you can check the change log on the official website below. Changelogs:

https://www.kernel.org/
https://www.kernel.org/pub/linux/kernel/v3.x/ChangeLog-3.19.3

In this tutorial we guide you how to install the latest kernel on Ubuntu and LinuxMint.
Note: Its Suitable of the following Linux variant. Linux Mint 13/14/15/16/17/17.1 Elementary OS 0.2/0.3
1. To upgrade to kernel 3.19.3, Open a terminal and execute the following command below, or for desktop user you can download the packages on the official website.
Download: kernel.ubuntu.com Make sure to check 1st your OS type (32-bit i386 or 64-bit amd64)
For 32bit Single Command:

cd /tmp && wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-headers-3.19.3-031903-generic_3.19.3-031903.201503261036_i386.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-headers-3.19.3-031903_3.19.3-031903.201503261036_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-image-3.19.3-031903-generic_3.19.3-031903.201503261036_i386.deb && sudo dpkg -i *.deb

For 64bit Single Command:

cd /tmp && wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-headers-3.19.3-031903-generic_3.19.3-031903.201503261036_amd64.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-headers-3.19.3-031903_3.19.3-031903.201503261036_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v3.19.3-vivid/linux-image-3.19.3-031903-generic_3.19.3-031903.201503261036_amd64.deb && sudo dpkg -i *.deb 

2.After installation of the new kernel version, Update GRUB, open a terminal with the following command. (Ctrl+Alt+T) .

sudo update-grub

3. After updating the GRUb restart the computer with the following command:

sudo reboot

4. Once you login, to check the version of the current kernel, open a terminal with the following command. (Ctrl+Alt+T) .

uname -r

Source: https://www.kernel.org Have a nice day, cyah..enjoi

Post Comment