一.
编译的方法如下(以.tar.*的格式为例)
tar -xf linux-2.6.**.tar.*
make mrproper
make menuconfig //device , file system的选项比较重要点
make
make modules
make modules_install
make install
二.
内核升级出现的错误:
1.相对而言,rpm格式的麻烦一些,他解压出来的文件是放到redhats目录,需要经过一系列的环境设置
2.如果是2.4升级到2.6,需要安装一下内核工具。名字忘了...
3.升级到2.6.18以上的内核版本,一般需要修改启动文件。如果启动未完全,可能会出现下面错误
这时会出现下面一系列的错误
1). Cannot open root device "LABEL=/ " //新版本内核需要将boot的启动镜像映射到真正的boot物理位置。
2). 如果是在VM下进行内核编译,可能还会出现这种问题。
mount: error 6 mounting ext3
mount: error 2 mounting none
switchroot: mount failed: 22
umount /initrd/dev failed: 2
Kernel panic - not syncing: Attempted to kill init!
(...这跟在VM设置系统时选择硬盘为SCSi格式有关,目前个人未能解决。建议是硬盘格式最好选择IDE)
3).
Enforcing mode requested but no policy loaded. Halting now.
kernel panic - not syncing: Attempted to kill init!
解决方法:
1、在grub.conf里把 kernel /vmlinuz-2.6.19 ro root=LABEL=/ rhgb quiet 变为:
kernel /vmlinuz-2.6.19 ro root=LABEL=/ enforcing=0 rhgb quiet
2、修改/etc/selinux/config配置文件,只要把SELINUX的值改成disabled就好了
阅读(991) | 评论(0) | 转发(0) |