Quantcast
Channel: LinuxG.net
Viewing all articles
Browse latest Browse all 2249

How To Install Kernel 4.15 RC7 on Ubuntu, Linux Mint, Elementary OS And Other Ubuntu Derivatives

$
0
0

Kernel 4.15 RC7 has been released recently, bringing changes and enhancements.

Installation instructions:

Because it is very difficult to compile a Linux kernel, Canonical has packed all the kernel releases as deb packages and made them available for everybody that uses Ubuntu or Ubuntu-based systems, via its kernel.ubuntu.com repository.

The below commands are available for all the Ubuntu, Linux Mint, Elementary OS and other derivative systems.

For 32 bit systems, download and install the i386 debs. For 64 bit systems, download and install the amd64 packages:

How to install Kernel 4.15.x on 32 bit Ubuntu and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-headers-4.15.0-041500rc7_4.15.0-041500rc7.201801072330_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-headers-4.15.0-041500rc7-generic_4.15.0-041500rc7.201801072330_i386.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-image-4.15.0-041500rc7-generic_4.15.0-041500rc7.201801072330_i386.deb

Install the Kernel:

$ sudo dpkg -i linux-headers-4.15*.deb linux-image-4.15*.deb

Optional, remove the kernel:

$ sudo apt-get remove linux-headers-4.15* linux-image-4.15*

How to install Kernel 4.15.x on 64 bit Ubuntu and derivative systems:

Download the needed packages:

$ cd /tmp
$ wget \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-headers-4.15.0-041500rc7_4.15.0-041500rc7.201801072330_all.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-headers-4.15.0-041500rc7-generic_4.15.0-041500rc7.201801072330_amd64.deb \
kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc7/linux-image-4.15.0-041500rc7-generic_4.15.0-041500rc7.201801072330_amd64.deb

Install the Kernel:

$ sudo dpkg -i linux-headers-4.15*.deb linux-image-4.15*.deb

Optional, remove the kernel:

$ sudo apt-get remove linux-headers-4.15* linux-image-4.15*

<p>The post How To Install Kernel 4.15 RC7 on Ubuntu, Linux Mint, Elementary OS And Other Ubuntu Derivatives first appeared on LinuxG.net.</p>


Viewing all articles
Browse latest Browse all 2249

Trending Articles