|
Linux Kernel 4.2 has been released, which is the largest version of Linus Torvalds recently released, an increase of more than 1 million lines of code to remove approximately 25 million lines of code. Major new features include: new AMDGPU drive; Intel Broxton support; improved NCQ TRIM process; F2FS file system encryption; rewriting the part of Intel's x86 assembler code; LSM Stacking; gradient delay network congestion control algorithm; Improved write-back management control group and many more.
The following comes from the mailing list:
So judging by how little happened this week, it would not have been a mistake to release 4.2 last week after all, but hey, there's certainly a few fixes here, and it's not like delaying 4.2 for a week should have caused any problems either .
So here it is, and the merge window for 4.3 is now open. I already have a few pending early pull requests, but as usual I'll start processing them tomorrow and give the release some time to actually sit.
Installation Notes.
Ubuntu users to install the system, ubuntu provides a DEB package, download address: kernel.ubuntu.com, you can also use the following command to install.
32 users:
Download the installation package command:
cd / tmp
wget
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200_4.2.0-040200.201508301530_all.deb
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200-generic_4.2.0-040200.201508301530_i386.deb
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-image-4.2.0-040200-generic_4.2.0-040200.201508301530_i386.deb
Install Kernel:
sudo dpkg -i linux-headers-4.2 * .deb linux-image-4.2 * .deb
Uninstall kernel:
sudo apt-get remove linux-header-4.2 * linux-image-4.2 *
64 users:
Download the installation package command:
cd / tmp
wget
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200_4.2.0-040200.201508301530_all.deb
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200-generic_4.2.0-040200.201508301530_amd64.deb
kernel.ubuntu.com/~kernel-ppa/mainline/v4.2-unstable/linux-image-4.2.0-040200-generic_4.2.0-040200.201508301530_amd64.deb
Install Kernel:
sudo dpkg -i linux-headers-4.2 * .deb linux-image-4.2 * .deb
Uninstall kernel:
sudo apt-get remove linux-header-4.2 * linux-image-4.2 *
CentOS 7 users to install
su root
rpm --import https://www.elrepo.org/RPM-GPG-KEY-elrepo.org
yum install http://www.elrepo.org/elrepo-release-7.0-2.el7.elrepo.noarch.rpm
yum --enablerepo = elrepo-kernel install kernel-ml
reboot
Uninstall kernel 4.2
yum remove kernel-ml |
|
|
|