1、下载内核: http://www.kernel.org/pub/linux/kernel/v2.6/linux-2.6.23.tar.bz2
2、解压缩: tar -xjvf linux-2.6.23.tar.bz2 (定义解压缩后的目录 /home/cral/linux-2.6.23)
3、 cd linux-2.6.23
4、配置 : make menuconfig
5、编译: make bzImage
6、编译模块:make modules
3J!d c h$i F }07、安装模块:make modules_install
8、 cp System.map /boot/System.map-2.6.23
9、 cp arch/i386/bzImage /boot/vmlinuz-2.6.23
10、制作内存镜像:
cd /boot
yaird --output initrd.img-2.6.23 2.6.23
11、添加内核启动菜单:
后在/boot/grub/menu.list作如下修改就可以完工
title Linux kernel 2.6.23
root (hd0,0)
kernel /boot/vmlinuz-2.6.23 root=UUID=ecfffd2c-0267-4554-89d8-3e6989e36b98 ro quiet splash locale=zh_CN
initrd /boot/initrd.img-2.6.23
quiet
12、重启系统即可使用新内核