编译内核

操作环境:CentOS 6.9
内核包:linux-3.18.60.tar.xz

1、内核包
到官方网站https://www.kernel.org/ 下载Linux内核包linux-3.18.60.tar.xz。
我把它放在根目录下,并解压:

[root@CentOS6 ~]#tar xf linux-3.18.60.tar.xz 
[root@CentOS6 ~]#ls
anaconda-ks.cfg  Documents     httpd-2.2.32.tar.bz2  ip_forward~           mbr.bin   Public         Videos
bin              Downloads     install.log           linux-3.18.60         Music     systeminfo.sh
Desktop          httpd-2.2.32  install.log.syslog    linux-3.18.60.tar.xz  Pictures  Templates

linux-3.18.60目录就是解压出来的东西~

2、生成配置模板文件
配置文件用来决定各种系统服务,是直接编译到内核,还是以模块方式编译。我们直接用/boot/config-2.6.32-696.el6.x86_64这个文件作为参考模板,编译新内核。

[root@CentOS6 ~]#cp /boot/config-2.6.32-696.el6.x86_64    /root/linux-3.18.60/.config

3、配置内核选项
进入到/root/linux-3.18.60/目录下,使用make menuconfig工具配置内核选项

编译内核_第1张图片
image.png

系统报错。这是因为我的机器缺少工具导致。按照提示,需要装上缺少的工具包。

[root@CentOS6 linux-3.18.60]#yum list *curses*

用上面的命令发现报错的error:curses.h文件来自ncurses-devel.x86_64这个包。我们安装一下:

[root@CentOS6 linux-3.18.60]#yum install ncurses-devel

安装好缺少的包后,继续使用make menuconfig

编译内核_第2张图片
配置选项

这次没有报错,进入了内核配置选项的窗口。根据需求,我们可以选择编译的模块功能。其中*是编译到内核,M是编译成模块,空白表示不启用该服务。

4、编译
make -j 4 编译内核,-j 4 是表示4个cup线程方式编译。

编译内核_第3张图片
编译

5、make modules_install

make modules_install 就是安装模块文件到/lib/modules/3.18.60-3.18-luo目录下

[root@CentOS6 linux-3.18.60]#make modules_install

6、make install
安装bzImage为/boot/vmlinuz-VERSION-RELEASE
生成initramfs文件
编辑grub的配置文件

[root@CentOS6 linux-3.18.60]#make install
sh ./arch/x86/boot/install.sh 3.18.60-3.18-luo arch/x86/boot/bzImage \
        System.map "/boot"
ERROR: modinfo: could not find module sco
ERROR: modinfo: could not find module l2cap
ERROR: modinfo: could not find module vmware_balloon
ERROR: modinfo: could not find module snd_page_alloc
ERROR: modinfo: could not find module crc_t10dif

到这里算是完成编译了。

你可能感兴趣的:(编译内核)