红联首页 凝聚Linux人的力量
菜鸟过关 | 精华文档 | 同城人(交友) | 我与Linux的故事 | Linux新闻 | Linux视频 | Linux人才 | 软件下载 | 大学校园 | English
发新话题
打印

Rebuild Linux Kernel

Rebuild Linux Kernel

#cd /usr/src/
#tar -zxvf linux-2.4.31.tar.gz

#ln -s linux-2.4.31 linux
#cd linux

cp /boot/config-2.4.18-14   ./.config
make menuconfig

#make dep
#make clean
#make bzImage

#make modules

#make modules_install

[root@localhost linux]# cp System.map   /boot/System.map-2.4.31  
[root@localhost linux]# cp arch/i386/boot/bzImage   /boot/vmlinuz-2.4.31

[root@localhost linux]# cd /boot/
[root@localhost boot]# rm -fr System.map
[root@localhost boot]# rm -fr vmlinuz
[root@localhost boot]# ln -s System.map-2.4.31 System.map   
[root@localhost boot]# ln -s vmlinuz-2.4.31 vmlinuz


[root@localhost boot]# cd /usr/src/linux
[root@localhost linux]# new-kernel-pkg --install --depmod --mkinitrd 2.4.31

[root@localhost linux]# cd /boot/
[root@localhost boot]# vi grub/grub.conf

TOP

发新话题