
After two months of development, Linus Torvalds announced the release of Linux kernel 4.3. In the new version made about 11 thousand corrections from more than 1,500 developers, the size of the patch is 42 MB (the changes affected 10388 files, added 643628 lines of code, deleted lines -333888). About 48% of all presented in 4.3 of the changes associated with device drivers, approximately 18% of changes relate to updating the code for specific hardware architectures, 11% is related to network stack, 3% - file systems and 4% c internal kernel subsystems.
Warning. The Linux kernel is a critical element of the system. To do the upgrade costs when one of your hardware devices is not working properly, and the new kernel may fix this problem. But at the same time installing a new kernel unnecessarily can lead to undesirable regressions, such as: no network connection, no sound or even the inability to boot the system, so install a new kernel on your own risk.
You can download the relevant deb packages from HERE and install them. Or just follow the instructions given below that will help you to install a new kernel multiple commands in terminal.
Suitable for Linux Mint 13/14/15/16/17/17.1/17.2 Elementary OS 0.2/0.3 PinguyOS 14/12 Deepin 2014.3
cd /tmp; wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020846_i386.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-headers-4.3.0-040300_4.3.0-040300.201511020846_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020846_i386.deb; sudo dpkg -i *.debFor 64-bit (single command):
cd /tmp; wget http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-headers-4.3.0-040300-generic_4.3.0-040300.201511020846_amd64.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-headers-4.3.0-040300_4.3.0-040300.201511020846_all.deb http://kernel.ubuntu.com/~kernel-ppa/mainline/v4.3-unstable/linux-image-4.3.0-040300-generic_4.3.0-040300.201511020846_amd64.deb; sudo dpkg -i *.debsudo update-grub
Note If you have a boot loader installed BURG, and it should be updated:
sudo update-burg
sudo reboot
uname -r
sudo apt-get purge linux-image-4.3-*
Reason: New information added