Install Linux Kernel 4.18-rc3 on Ubuntu Linux

Upgrade and install Linux Kernel 4.18-rc3 on Ubuntu Systems. Linux 4.18-rc3 Kernel is released with
Linux Kernel 4.18-rc3 was announced by Linus Torvalds. He writes:

I’m back at home, over jetlag, and back to the usual “Sunday afternoon” release schedule. So there it is, in all the usual places.

And things look fairly normal – a bit over a third is drivers (various parts: input, usb, sound, gpu, mtd, networking, …), with the rest being arch updates (arm/arm64 – dts files dominating, microblaze, powerpc, x86), filesystems (xfs, some btrfs, some minor core vfs), networking, documentation updates and tooling. The shortlog is appended, nothing really stands out that much. Mostly it really is just one- and few-liners spread out all over.

Go forth and test.
– Linus

On 32 Bit Systems

Run the following commands in terminal to install Linux Kernel 4.18-rc3 on 32 Bit Systems:

sudo apt-get update
sudo apt-get upgrade
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3_4.18.0-041800rc3.201807012030_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3-generic_4.18.0-041800rc3.201807012030_i386.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3-lowlatency_4.18.0-041800rc3.201807012030_i386.deb
sudo dpkg -i linux-headers-4.18.0*.deb linux-image-4.18.0*.deb
sudo reboot

On 64 Bit Systems

Run the following commands in terminal to install Linux Kernel 4.18-rc3 on 64 Bit Systems:

sudo apt-get update
sudo apt-get upgrade
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3_4.18.0-041800rc3.201807012030_all.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3-generic_4.18.0-041800rc3.201807012030_amd64.deb
wget http://kernel.ubuntu.com/~kernel-ppa/mainline/linux-headers-4.18.0-041800rc3-lowlatency_4.18.0-041800rc3.201807012030_amd64.deb
sudo dpkg -i linux-headers-4.18.0*.deb linux-image-4.18.0*.deb
sudo reboot

Install Linux Kernel 4.18-rc3 on Ubuntu Linux originally posted on Source Digit – Latest Technology, Gadgets & Gizmos.