Skip to content

Linux内核编译

Posted on:March 4, 2020 at 09:49:36 GMT+8

写在前面

make这一阶段花费时间和机器配置有关,可能长达几小时,建议选择好时间。同时需要足够的磁盘空间,22G以上。

环境:Ubuntu 18.04.1 阿里云服务器

查看现在的内核版本

cat /proc/version

DeepinScreenshot_select-area_20200303234804.png

可以看到内核版本为4.15.0

下载Linux内核源代码文件

https://www.kernel.org/

可以使用国内镜像 https://mirrors.tuna.tsinghua.edu.cn/kernel/

DeepinScreenshot_20200303233752.png

wget https://mirror.tuna.tsinghua.edu.cn/kernel/v4.x/linux-4.15.1.tar.gz

解压

tar -xavf linux-4.15.1.tar.gz

安装编译依赖

apt-get install gcc make libncurses5-dev openssl libssl-dev build-essential pkg-config libc6-dev bison flex libelf-dev

编译前配置

在解压后的目录下执行

make menuconfig

DeepinScreenshot_20200303202045.png进行配置,可以直接保存退出。

编译

make

image.png

耗时可能较长。

编译完成:

突然结束,也没什么提示

image-20200304093348825

安装

安装内核模块,root下执行

make modules_install

image-20200304093929366

安装内核,root下执行

make install

image.png

安装完成:

image-20200304094140351

检验成果

reboot
cat /proc/version

DeepinScreenshot_select-area_20200304094419.png

可以看到内核已经是4.15.1了,刚才编译的。

完。

2020-3-3 23:30