Ubuntu,Linux Mint,Elementary OS 和其他Ubuntu衍生版上安装

安装说明:

由于编译Linux kernel非常困难,Canonical已经将所有内核版本打包为deb软件包,并通过其kernel.ubuntu.com存储库将它们提供给使用Ubuntu或基于Ubuntu的系统的所有人。

以下命令适用于所有Ubuntu,Linux Mint,Elementary OS 和其他Ubuntu衍生版系统。

对于32位系统,请下载并安装i386 debs。 对于64位系统,请下载并安装amd64软件包:

如何在32位Ubuntu和衍生系统上安装Linux Kernel 4.15.x:

下载所需的软件包:

$ cd /tmp<br>$ wget \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-headers-4.15.0-041500rc1_4.15.0-041500rc1.201711262030_all.deb \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-headers-4.15.0-041500rc1-generic_4.15.0-041500rc1.201711262030_i386.deb \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-image-4.15.0-041500rc1-generic_4.15.0-041500rc1.201711262030_i386.deb

安装内核:

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

可选,删除内核:

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

如何在64位Ubuntu和衍生系统上安装Linux Kernel 4.15.x:

下载所需的软件包:

$ cd /tmp<br>$ wget \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-headers-4.15.0-041500rc1_4.15.0-041500rc1.201711262030_all.deb \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-headers-4.15.0-041500rc1-generic_4.15.0-041500rc1.201711262030_amd64.deb \<br>kernel.ubuntu.com/~kernel-ppa/mainline/v4.15-rc1/linux-image-4.15.0-041500rc1-generic_4.15.0-041500rc1.201711262030_amd64.deb

安装内核:

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

可选,删除内核:

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

Linux Kernel 的详细介绍:请点这里
Linux Kernel 的下载地址:请点这里

相关推荐