升级的Redhat Linux内核在启动时会引起内核恐慌

时间:2014-08-22 21:20:37

标签: linux kernel redhat panic initrd

我试图在RHEL 5.10 32位(2.6.18内核)上使用新内核(2.6.32)。 .32内核是从kernel.org下载的,没有被Redhat修补。我知道这很愚蠢,但升级到RHEL 6对我们来说不是一个选择。

我做了make menuconfig; make; make modules; make modules_install; make install; reboot。然后我得到了一个内核恐慌。我从源代码构建了2.6.18内核,无论是否使用redhat修补。两者都运作良好。

我的问题是,是否可以将2.6.32内核与RHEL 5.10安装(2.6.18)中的所有文件系统和库一起使用。如果可能,那么我的流程有什么问题?

======

Mounting root filesystem.
mount: could not find filesystem '/dev/root'
Setting up other filesystems.
Setting up new root fs
setuproot: moving /dev failed: No such file or directory
no fstab.sys, mounting internal defaults
setuproot: error mounting /proc: Nosuch file or dirctory 
Switching to new root and running init.
unmounting old /dev
unmounting old /proc
unmounting old /sys
switchroot: mount failed: No such file or directory
Kernel panic - not syncing: Attempted to kill init!
Pid: 1, comm: init Not tainted 2.6.32.63 #1
Call Trace:
[<c0xxxxxx>] ? panic
[<c0xxxxxx>] ? do_exit
[<c0xxxxxx>] ? do_group_exit
[<c0xxxxxx>] ? sys_exit_group
[<c0xxxxxx>] ? syscall_call

我的/boot/grub/grub.conf有以下内容。

root (hd0,0)
kernel /boot/vmlinuz-2.6.32-63 ro root=LABEL=/ rhgb
initrd /boot/initrd-2.6.32-63.img

1 个答案:

答案 0 :(得分:0)

感谢所有的帮助和评论,我能够自己回答。

这是我尝试但失败的原因。在新旧initrd(gunzip | cpio)之间进行区分。安装了不同的模块,但它们并不重要。我禁用了可加载模块(内置所有内容),问题仍然存在。我编译了busybox并将它放在initrd(edit / init)中,我得到了一个shell。从那里我可以手动mknod并挂载文件系统,但在切换root时仍然会出现内核恐慌。

最后我找到了this。它有更好的描述和问题的解决方案。启用&#34;已弃用的sysfs&#34;并且它已全部修复。