Saturday, 7 December 2024
How To's Linux News

How to Install Linux Kernel 4.1 on Ubuntu 15.04 & Ubuntu 14.04/14.10

In this article we will guide you How to Install or Upgrade Linux Kernel 4.1 (Stable) on Ubuntu Systems with  new updates. Linux Kernel 4.1  includes updated GPU drivers and enhancements for the BTRFS and EXT4 file systems.
What’s New in Linux Kernel 4.1:
Some of highlights for the Linux 4.1 kernel (by Michael Larabel):

  • Significant performance improvements for certain hardware as well as power consumption/efficiency improvements for select Intel hardware.
  • Nouveau ships with GeForce GTX 750 acceleration support that doesn’t require the manual extracting/setup of any non-redistributable firmware blobs.
  • Intel XenGT vGPU support for those wanting Intel graphics acceleration support from Xen guests. The KVM support is still being developed.
  • Radeon DisplayPort MST support.
  • EXT4 file-system encryption thanks to work done by Google in looking to add file-system-level EXT4 encryption for Android.
  • Better RAID 5/6 support with MD RAID.
  • Improved laptop support from major vendors along with better Chromebook Pixel 2 support.
  • Continued bring-up of Intel Skylake support within Linux. Skylake is still on course for launching later this year.
  • ACPI support for AArch64 / 64-bit ARM.
  • Many other changes.

 
1. To install Kernel 4.1 on 32 bit Ubuntu and derivative systems open Terminal and run the following commands:

 cd /tmp
 wget \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-headers-4.1.0-040100_4.1.0-040100.201506220235_all.deb \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-headers-4.1.0-040100-generic_4.1.0-040100.201506220235_i386.deb \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-image-4.1.0-040100-generic_4.1.0-040100.201506220235_i386.deb

After downloading the packages,to Install the kernel open a terminal and execute the following command.

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

After installing the kernel on the system, run the following command in terminal to refresh grub boot-loader then Reboot the system.

sudo update-grub
sudo reboot

2. Install Kernel 4.1 Stable on 64 Bit Ubuntu Systems: Open Terminal and run the following commands :

 cd /tmp
 wget \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-headers-4.1.0-040100_4.1.0-040100.201506220235_all.deb \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-headers-4.1.0-040100-generic_4.1.0-040100.201506220235_amd64.deb \
 kernel.ubuntu.com/~kernel-ppa/mainline/v4.1-unstable/linux-image-4.1.0-040100-generic_4.1.0-040100.201506220235_amd64.deb

After downloading the packages,to Install the kernel open a terminal and execute the following command.

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

After installing the kernel on the system, run the following command in terminal to refresh grub boot-loader then Reboot the system.

sudo update-grub
sudo reboot

3. To Uninstall and Remove Kernel 4.1 (Stable) on ubuntu system and its derivative Open Terminal and run the following commands:

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

Enjoi cyahh.

Post Comment