Install Linux Kernel 4.0.4 on Ubuntu Systems – 32 bit/64 bit Ubuntu 15.04, Ubuntu 14.10, Ubuntu 14.04 and Derivatives. Download Kernel 4.0.4 on Ubuntu and derivative systems.
Install Linux Kernel 4.0.4 on 32 Bit Ubuntu
Open Terminal and run the following commands to install Linux Kernel 4.0.4 on 32 Bit Ubuntu systems:
cd /tmp
wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-headers-4.0.4-040004_4.0.4-040004.201505171336_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-headers-4.0.4-040004-generic_4.0.4-040004.201505171336_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-image-4.0.4-040004-generic_4.0.4-040004.201505171336_i386.deb
sudo dpkg -i linux-headers-4.0*.deb linux-image-4.0*.deb
Install Linux Kernel 4.0.4 on 64 Bit Ubuntu
Open Terminal and run the following commands to install Linux Kernel 4.0.4 on 64 Bit Ubuntu systems:
cd /tmp
wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-headers-4.0.4-040004_4.0.4-040004.201505171336_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-headers-4.0.4-040004-generic_4.0.4-040004.201505171336_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.0.4-wily/linux-image-4.0.4-040004-generic_4.0.4-040004.201505171336_amd64.deb
sudo dpkg -i linux-headers-4.0*.deb linux-image-4.0*.deb
Uninstall Linux Kernel 4.0.4 From 32 Bit/64 Bit Ubuntu Systems
To uninstall and remove the Linux Kernel 4.0.4 from Ubuntu Systems, run the following command:
sudo apt-get remove linux-header-4.0* linux-image-4.0*
Text