当前位置: 技术问答>linux和unix
CentOS升级内核后出现的问题
来源: 互联网 发布时间:2016-10-22
本文导语: 各位大侠们,我是在VM虚拟机上装的CentOS 5.5,我今天升级内核,从2.6.18升到现在的2.6.36.1版,按照网上的步骤已经安装完了内核的模块,可是reboot时在启动画面出现下面这些信息?请问怎么办?怎么解决? 下面是回显的信息...
各位大侠们,我是在VM虚拟机上装的CentOS 5.5,我今天升级内核,从2.6.18升到现在的2.6.36.1版,按照网上的步骤已经安装完了内核的模块,可是reboot时在启动画面出现下面这些信息?请问怎么办?怎么解决?
下面是回显的信息:
insmod:error inserting '/lib/dm-mirror.ko': -1 Unknown symbol in module
Reading all physical volumes. This May take a while...
Volume group "VolGroup00" not found
mount: could not find filesystem '/dev/root'
setuproot: moving /dev failed: No such file or directory
setuproot: error Mounting /proc: No such file or directory
setuproot: error Mounting /sys: No such file or directory
switchroot: Mount failed: No such file or directory
Kernel panic - not syncing: Attempted to kill init!
Pid: 1, comm: init Not tainted 2.6.36.1 #1
Call Trace:
[] ? panic+0x5b/0xff
[] ? do_exit+0x614/0x6f0
[] ? redirected_tty_write+0x0/0xe0
[] ? complete_and_exit+0x0/0x30
[] ? syscall_call+0x7/0xb
下面是回显的信息:
insmod:error inserting '/lib/dm-mirror.ko': -1 Unknown symbol in module
Reading all physical volumes. This May take a while...
Volume group "VolGroup00" not found
mount: could not find filesystem '/dev/root'
setuproot: moving /dev failed: No such file or directory
setuproot: error Mounting /proc: No such file or directory
setuproot: error Mounting /sys: No such file or directory
switchroot: Mount failed: No such file or directory
Kernel panic - not syncing: Attempted to kill init!
Pid: 1, comm: init Not tainted 2.6.36.1 #1
Call Trace:
[] ? panic+0x5b/0xff
[] ? do_exit+0x614/0x6f0
[] ? redirected_tty_write+0x0/0xe0
[] ? complete_and_exit+0x0/0x30
[] ? syscall_call+0x7/0xb
|
搜一下“Volume group "VolGroup00" not found”
有很多人都遇到过类似问题
http://topic.csdn.net/u/20100420/14/a7343d49-c99f-440c-ad72-26d63efcebb9.html
http://topic.csdn.net/u/20070908/09/aa765e91-251b-402f-bfd2-1e9c902d78da.html
很多同学们都说这是VM的bug
有很多人都遇到过类似问题
http://topic.csdn.net/u/20100420/14/a7343d49-c99f-440c-ad72-26d63efcebb9.html
http://topic.csdn.net/u/20070908/09/aa765e91-251b-402f-bfd2-1e9c902d78da.html
很多同学们都说这是VM的bug
|
insmod:error inserting '/lib/dm-mirror.ko': -1 Unknown symbol in module
--------------------
错误原因
dm-region-hash.ko在img里的init文件里重复加载了 这个是不影响启动的 但是也提供一共解决方法
解决方法是http://funky-dennis.livejournal.com/3290.html
真正的致命错误在这里
mount: could not find filesystem '/dev/root'
setuproot: moving /dev failed: No such file or directory
setuproot: error Mounting /proc: No such file or directory
setuproot: error Mounting /sys: No such file or directory
解决方法 在生成.config文件之后 把.config文件做如下修改
# CONFIG_SYSFS_DEPRECATED_V2 is not set
改成
CONFIG_SYSFS_DEPRECATED_V2=y
然后继续再make
你可以参考我升级的一个最简单步骤http://topic.csdn.net/u/20101014/23/38fd1d2a-058c-4228-a6be-d2d89757ae4c.html 的第15楼
另外内核跨度太大 是不建议你升级的 当然如果是学习的话 另说
--------------------
错误原因
dm-region-hash.ko在img里的init文件里重复加载了 这个是不影响启动的 但是也提供一共解决方法
解决方法是http://funky-dennis.livejournal.com/3290.html
真正的致命错误在这里
mount: could not find filesystem '/dev/root'
setuproot: moving /dev failed: No such file or directory
setuproot: error Mounting /proc: No such file or directory
setuproot: error Mounting /sys: No such file or directory
解决方法 在生成.config文件之后 把.config文件做如下修改
# CONFIG_SYSFS_DEPRECATED_V2 is not set
改成
CONFIG_SYSFS_DEPRECATED_V2=y
然后继续再make
你可以参考我升级的一个最简单步骤http://topic.csdn.net/u/20101014/23/38fd1d2a-058c-4228-a6be-d2d89757ae4c.html 的第15楼
另外内核跨度太大 是不建议你升级的 当然如果是学习的话 另说
|
看看这个和主席说的