How to upgrade Ubuntu to Linux Kernel 4.2
Linux Kernel 4.2 has been officially released for nearly a week. At the time of its release, we had some introduction to Kernel 4.2, in addition, Linus Torvalds also describes Bug fixes and Development preparations in lkml.org. So have you ever upgraded to Linux Kernel 4.2? From my personal upgrade perspective, we have been running stably. Now we will introduce how to upgrade Ubuntu to Linux Kernel 4.2. Upgrade Ubuntu to Linux Kernel 4.2. Currently, the DEB package of Kernel 4.2 has been released to the Ubuntu source. We can download and install it directly. Before installing Kernel 4.2 deb, you must ensure that your system is a 32-bit or 64-bit version, and the installation should follow the following sequence: linux-headers-4.2.0-xxx_all.deb linux-headers-4.2.0-xxx-generic_xxx_i386/amd64.deb linux-image-4.2.0-xxx-generic_xxx_i386/amd64.deb 64-bit Ubuntu upgrade Kernel 4.2 command cd/tmp/wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200_4.2.0-040200.201508301530_all.deb wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200-generic_4.2.0-040200.201508301530_amd64.deb wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-image-4.2.0-040200-generic_4.2.0-040200.201508301530_amd64.deb sudo dpkg-I linux-headers-4.2.0-*. deb linux-image-4.2.0-*. deb 32-bit Ubuntu upgrade Kernel 4.2 command cd/tmp/wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200_4.2.0-040200.201508301530_all.deb wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-headers-4.2.0-040200-generic_4.2.0-040200.201508301530_i386.deb wget http://kernel.ubuntu.com /~ Kernel-ppa/mainline/v4.2-unstable/linux-image-4.2.0-040200-generic_4.2.0-040200.201508301530_i386.deb sudo dpkg-I linux-headers-4.2.0 -*. deb linux-image-4.2.0 -*. after the deb kernel is installed, run the following command on the terminal to refresh the grub boot loader: After the sudo update-grub upgrade is complete, restart the system!