这应该很简单。然而,它给了我地狱。
问题
我已经编译了最新的内核,当我重新启动我的机器时,它会产生与文件系统相关的内核恐慌。
问题
如何让新内核识别 VMWare 文件系统?必须有一些设置让 Linux 安装知道“硬盘驱动器”不是真正的驱动器,而是实际上代表虚拟机的文件。
背景
首先,我不是 Linux 大师。这是我第一次编译内核。我做了什么来解决这个问题:
- 从 kernel.org 下载内核版本 2.6.34
- 将源码解压到目录中
- 按照此处的安装说明进行操作: http://www.cyberciti.biz/tips/compiling-linux-kernel-26.html
- 基本上,运行:make menuconfig,make,make modules,make modules_install,make install,reboot
- 我并没有真正改变 make menuconfig 部分中的任何内容
重新启动后,它失败并出现以下错误:
No volume groups found
Volume group "VolGroup00" not found
Unable to access resume device (/dev/VolGroup00/LogVol01)
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!
环境
我在运行 2.8 GHz Intel Core Duo 处理器的 OS X v10.5.8 的 MacBook Pro 上运行的 VMWare Fusion 版本 3.1.0 (261058) 下运行 Red Hat Enterprise Linux Server (2.6.18-194.3.1.el5PAE) 4GB 1067 MHz DDR3 内存。虚拟机分配有 2 个处理器内核和 2048 MB 内存。VM 硬盘设置指向文件“Red Hat Enterprise Linux 5.vmdk”,其中“总线类型”设置为“SCSI”,“磁盘大小”设置为 40Gb 并选中“拆分为 2Gb 文件”选项。
当我使用以下 /boot/grub/menu.lst 文件时,一切正常,只是它引导到错误的内核(2.6.18-194.3.1.el5PAE 而不是 2.6.34):
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.34)
root (hd0,0)
kernel /vmlinuz-2.6.34 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.34.img
title Red Hat Enterprise Linux Server (2.6.18-194.3.1.el5PAE)
root (hd0,0)
kernel /vmlinuz-2.6.18-194.3.1.el5PAE ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.18-194.3.1.el5PAE.img
title Red Hat Enterprise Linux Server (2.6.18-194.el5PAE)
root (hd0,0)
kernel /vmlinuz-2.6.18-194.el5PAE ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.18-194.el5PAE.img
当我使用以下文件时(最后几行注释掉并进行了一些其他小的编辑),它会尝试引导正确的内核,但引导失败并出现上述内核恐慌:
# grub.conf generated by anaconda
#
# Note that you do not have to rerun grub after making changes to this file
# NOTICE: You have a /boot partition. This means that
# all kernel and initrd paths are relative to /boot/, eg.
# root (hd0,0)
# kernel /vmlinuz-version ro root=/dev/VolGroup00/LogVol00
# initrd /initrd-version.img
#boot=/dev/sda
default=1
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title Red Hat Enterprise Linux Server (2.6.34)
root (hd0,0)
kernel /vmlinuz-2.6.34 ro root=/dev/VolGroup00/LogVol00 rhgb quiet
initrd /initrd-2.6.34.img
savedefault
boot
#title Red Hat Enterprise Linux Server (2.6.18-194.3.1.el5PAE)
# root (hd0,0)
# kernel /vmlinuz-2.6.18-194.3.1.el5PAE ro root=/dev/VolGroup00/LogVol00 rhgb quiet
# initrd /initrd-2.6.18-194.3.1.el5PAE.img
#title Red Hat Enterprise Linux Server (2.6.18-194.el5PAE)
# root (hd0,0)
# kernel /vmlinuz-2.6.18-194.el5PAE ro root=/dev/VolGroup00/LogVol00 rhgb quiet
# initrd /initrd-2.6.18-194.el5PAE.img
我不明白,在一种情况下,它如何能够很好地找出 VMWare 的文件系统,而在另一种情况下,它却不能。我错过了什么?我应该选择一些与 VMWare 相关的特殊编译选项吗?我需要更改 VMWare Fusion 方面的内容吗?我想不通!
非常感谢任何和所有建议!