感谢支持
我们一直在努力

Fedora下内核编译

第一步:去官方下载最新的内核源码包

  官方网址:www.kernel.org


  当前最新版本:2.6.31,下载网址:http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.31.tar.bz2


  您可以使用 wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.31.tar.bz2 下载


  第二步:解压源码包(这里有些人说要将源码解压到/usr/src目录下,其实是不正确的,你可以解压到任何目录)


  cd ~wget http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.31.tar.bz2


  tar -jxvf linux-2.6.31.tar.bz2


  第三步:配置选项

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.linuxidc.com

cd linux2.6.31
cp
/boot/config`uname r` .config
make mrproper (删除上次编译产生的垃圾,初次编译不需要)
make menuconfig (启动内核选项配置界面)

  说明一下,make menuconfig会寻找linux-2.6.31目录下的.config配置文件,如果找不到,则使用与CPU相关的config文件作为默认的配置。当然,我们也可以拷贝当前系统的配置作为对照,如cp /boot/config-`uname -r` .config (.config是隐藏文件 ls -a查看)


  注意:如果是同版本的内核编译,还需要备份下当前模块


  cd /lib/modules


  mv 2.6.31 2.6.31_old


  指定内核识别码


  vim Makefile


  EXTRAVERSION = .custom-1 (第4行)


  第四步(1):传统方式编译


  make all (2.6以前版本需要手工运行如下命令)



Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

(
# make dep       
<==建立相依的属性关系!
# make clean        
<==将旧的资料去除掉!
# make bzImage       
<==开始编译核心!这个核心是经过压缩的 (30分钟左右)
# make modules       
<==开始编译模块!这个动作视您刚刚编译的模块数量!(1小时左右)
)

  make modules_install (安装模块到/lib/modules/2.6.31),make install (系统将会把vmlinuz和System.map复制到/boot目录下同时修改grub/boot/grub/menu.lst,2.6以前版本需要手动拷贝vmlinuz和System.map)


  第四步(2):RPM方式编译会产生RPM包,方便提供给别人使用make rpm,编译完成之后,在~/rpmbuild /SRPMS/目录发现一个新的src.rpm包, 比如.SRPMS/kernel-2.6.31.custom-1.src.rpm, 内核rpm包位于~/rpmbuild/RPMS/i386/ (或RPMS/i586/, RPMS/i686/, 等. 看你的平台类型). 比如.RPMS/i386/kernel-2.6.31.custom-1.i386.rpm. 可以看到内核识别码已添加到软件包的名字中.


  安装新内核


  现在去新的rpm内核包存在的目录(基于你的平台类型, 比如. ~/rpmbuild/RPMS/i386/)安装rpm包,cd ~/rpmbuild/RPMS/i386


  rpm -ivh kernel-2.6.31.custom-1.i386.rpm(现在你甚至能够拷贝到其它的Fedora系统, 通过上面的方式安装. 你将不再需要编译内核.)


  接下来我们为新内核创建一个ramdisk, 否则系统将不能引导新内核:


  mkinitrd /boot/initrd-2.6.31.custom-1.img 2.6.31.custom-1


  然后编辑/boot/grub/menu.lst文件, 看一下你系统上已经存在(正在工作的)引导内核信息, 拷贝其中的一个实例, 替换为你新的内核和ramdisk:vim /boot/grub/menu.lst


  比如, 我的menu.lst, 在我添加新的内核信息前的情况:



Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

# grub.conf generated by anaconda
#
# Note that you
do not have to rerun grub after making changes to this file
# NOTICE: You have a
/boot partition. This means that
# all kernel and initrd paths are relative to
/boot/, eg.
# root (hd0,
0)
# kernel
/vmlinuzversion ro root=/dev/VolGroup00/LogVol00
# initrd
/initrdversion.img
#boot
=/dev/sda
default=0
timeout
=5
splashimage
=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (
2.6.181.2798.fc6)
root (hd0,
0)
kernel
/vmlinuz2.6.181.2798.fc6 ro root=/dev/VolGroup00/LogVol00
initrd
/initrd2.6.181.2798.fc6.img

  修改后的情况:



Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

# grub.conf generated by anaconda
#
# Note that you
do not have to rerun grub after making changes to this file
# NOTICE: You have a
/boot partition. This means that
# all kernel and initrd paths are relative to
/boot/, eg.
# root (hd0,
0)
# kernel
/vmlinuzversion ro root=/dev/VolGroup00/LogVol00
# initrd
/initrdversion.img
#boot
=/dev/sda
default=0
timeout
=5
splashimage
=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Fedora Core (
2.6.18custom2.6.18.2)
root (hd0,
0)
kernel
/vmlinuz2.6.18custom2.6.18.2 ro root=/dev/VolGroup00/LogVol00
initrd
/initrd2.6.18custom2.6.18.2.img
title Fedora Core (
2.6.31.custom1)
root (hd0,
0)
kernel
/vmlinuz2.6.31.custom1 ro root=/dev/VolGroup00/LogVol00
initrd
/initrd2.6.31.custom1.img
(你可以通过下面命令发现正确的vmlinuz和initrd文件:ls
l /boot)

  第五步:重启系统,在Grub引导菜单中,选择linux-2.6.31.custom-1。


  Reboot,重启之后,大功告成,你的新内核已经安装好了。

赞(0) 打赏
转载请注明出处:服务器评测 » Fedora下内核编译
分享到: 更多 (0)

听说打赏我的人,都进福布斯排行榜啦!

支付宝扫一扫打赏

微信扫一扫打赏