linux内核编译并在ubuntu下运行

    一直以为,内核编译,是相当高级,相当麻烦的事情。而且看网上的介绍,也是大篇大篇的。看起来很吓人。

   我这个怕麻烦,没办法。

   试过才知道,原来编译内核很简单

 

ubuntu下编译调试内核过程
下载内核源码,我这里用的前辈给的:linux-2.6.36.tar.bz2
tar -jxvf linux-2.6.36.tar.bz2
同时安装文件:libncurses5-dev_5.7+20090803-2ubuntu3_i386.deb
进入目录
make menuconfig
make

 

保持默认配置
如果生成我们所需要的内核文件,则为
make bzImage    /*bzImage 生成后在目录 linux-2.6.36/arch/x86/boot/下*/
make modules_install
/*要生成对应的initrd文件,执行如下命令。2.6.36依据为/lib/modules下的文件目录
 *详细解释可以参考man手册*/
mkinitramfs -k -o ~/tmp/initramfs-2.6.36 2.6.36

编辑原代码后,make。拷贝到/boot目录下,设置好/boot/grub/grub.cfg文件。就可以重启,选择进入我们编译好的kernel了。
grub文件添加部分:
menuentry 'Ubuntu, with Linux 2.6.36' --class ubuntu --class gnu-linux --class gnu --class os {
    recordfail
    insmod ext2
    set root='(hd0,6)'
    search --no-floppy --fs-uuid --set d56edb8f-9589-4265-8fe3-962d0ee38ed5
    linux   /boot/bzImage root=UUID=d56edb8f-9589-4265-8fe3-962d0ee38ed5 ro   quiet splash
    initrd  /root/tmp/initramfs-2.6.36
}

 

 

 

你可能感兴趣的:(linux,ubuntu,ext,OS,search,linux内核)