Kernel 4.4.165 has been released, bringing ARM, PowerPC, x86 and MIPS hardware architecture improvements and some fixes regarding the Alsa sound driver.
Installation instructions:
Compiling a Linux kernel is a little difficult and takes some time, but the Ubuntu (and derivative) users do not have to worry about that, because Canonical provides deb packages for these systems, via its kernel.ubuntu.com repository.
The below commands are available for all the Ubuntu, Linux Mint, Elementary OS and other Ubuntu derivative systems like Peppermint, LXLE, Linux Lite, Voyager etc. Pay attention to download and install the Kernel patch for your system’s architecture (i386 debs for 32 bit systems and amd64 debs for 64 bit systems).
How to install Kernel 4.4 on 32 bit Ubuntu and derivative systems:
Download the needed packages:
$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-headers-4.4.165-0404165_4.4.165-0404165.201811271134_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-headers-4.4.165-0404165-generic_4.4.165-0404165.201811271134_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-image-4.4.165-0404165-generic_4.4.165-0404165.201811271134_i386.deb
Install the Kernel:
$ sudo dpkg -i linux-headers-4.4*.deb linux-image-4.4*.deb
Optional, remove the kernel:
$ sudo apt-get remove linux-headers-4.4* linux-image-4.4*
How to install Kernel 4.4 on 64 bit Ubuntu and derivative systems:
Download the needed packages:
$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-headers-4.4.165-0404165_4.4.165-0404165.201811271134_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-headers-4.4.165-0404165-generic_4.4.165-0404165.201811271134_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.4.165/linux-image-4.4.165-0404165-generic_4.4.165-0404165.201811271134_amd64.deb
Install the Kernel:
$ sudo dpkg -i linux-headers-4.4*.deb linux-image-4.4*.deb
Optional, remove the kernel:
$ sudo apt-get remove linux-headers-4.4* linux-image-4.4*