How To Install Linux Kernel 4.10-rc2 On Ubuntu Systems

Update to Linux Kernel 4.10-rc2. Terminal commands to install Linux Kernel 4.10-rc2 on Ubuntu 16.10 and Ubuntu 16.04 Systems. Linux Kernel 4.10-rc2 fixes build failure, vlan handling and add support for RTL8168 series add-on card. It also brings various fixes for architecture and networking issues.

Announcing the release, Linux wrote:

Hey, it’s been a really slow week between Christmas Day and New Years Day, and I am not complaining at all. It does mean that rc2 is ridiculously and unrealistically small. I almost decided to skip rc2 entirely, but a small little meaningless release every once in a while never hurt anybody. So here it is.

The only even remotely noticeable work here is the DAX fixups that really arguably should have been merge window material but depended on stuff during this merge window and were delayed until rc2 due to that. Even that wasn’t big, and the rest is trivial small fixes.

I’m expecting things to start picking up next week as people recover from the holidays.

Linus

https://lkml.org/lkml/2017/1/1/68
http://kernel.ubuntu.com/~kernel-ppa/mainline/

Linux Kernel 4.10-rc2 On 32 Bit Ubuntu

Run the following commands in Terminal to install Linux Kernel 4.10-rc2 on 32 Bit Ubuntu Systems:

sudo apt-get update
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.10.0-041000rc2_4.10.0-041000rc2.201701011831_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.10.0-041000rc2-generic_4.10.0-041000rc2.201701011831_i386.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-image-4.10.0-041000rc2-generic_4.10.0-041000rc2.201701011831_i386.deb
sudo dpkg -i linux-headers-4.10.0*.deb linux-image-4.10.0*.deb
sudo reboot

Linux Kernel 4.10-rc2 On 64 Bit Ubuntu

Run the following commands in Terminal to install Linux Kernel 4.10-rc2 on 64 Bit Ubuntu Systems:

sudo apt-get update
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.10.0-041000rc2_4.10.0-041000rc2.201701011831_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.10.0-041000rc2-generic_4.10.0-041000rc2.201701011831_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-image-4.10.0-041000rc2-generic_4.10.0-041000rc2.201701011831_amd64.deb
sudo dpkg -i linux-headers-4.10.0*.deb linux-image-4.10.0*.deb
sudo reboot

Uninstall Kernel 4.10.-rc2

To uninstall the Kernel 4.10.-rc2 from Ubuntu Systems, run the following command in Terminal:

sudo apt-get update
sudo apt-get remove 'linux-headers-4.9.0*' 'linux-image-4.9.0*'

How To Install Linux Kernel 4.10-rc2 On Ubuntu Systems originally posted on Source Digit – Latest Technology, Gadgets & Gizmos.