我最近在我的 VMWare 机器上安装了 OpenVZ(为了做一些测试)并得到了以下结果:
https://www.dropbox.com/s/p38btkv5j84bvsh/Capture.JPG
GRUB 配置如下:
# 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=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz
hiddenmenu
title OpenVZ (2.6.32-042stab057.1)
root (hd0,0)
kernel /vmlinuz-2.6.32-042stab057.1 ro root=/dev/VolGroup00/LogVol00 sysfs.deprecated=1
initrd /initrd-2.6.32-042stab057.1.img
title CentOS (2.6.18-238.el5)
root (hd0,0)
kernel /vmlinuz-2.6.18-238.el5 ro root=/dev/VolGroup00/LogVol00
initrd /initrd-2.6.18-238.el5.img
答案1
这种情况通常发生在您在错误的 repo 上安装 OpenVZ 时。我假设您使用的主机节点操作系统是 CentOS 5。要解决此问题,您需要重新安装 OpenVZ。
首先你必须删除 OpenVZ。然后尝试编辑 OpenVZ 的存储库/etc/yum.conf.d/openvz.repo
您应该会发现类似这样的内容。您无需将启用的行从 0 更改为 1:
[openvz-kernel-rhel5]
name=OpenVZ RHEL5-based kernel
#baseurl=http://download.openvz.org/kernel/branches/rhel5-2.6.18/current/
mirrorlist=http://download.openvz.org/kernel/mirrors-rhel5-2.6.18
enabled=1
gpgcheck=1
gpgkey=http://download.openvz.org/RPM-GPG-Key-OpenVZ
不要忘记将其他设置(openvz-kernel-rhel4 和 openvz-kernel-rhel5)更改为 enabled=0。
编辑该文件后,运行以下命令:
yum install ovzkernel
你应该可以走了。