什么类型的媒体包含安装映像

什么类型的媒体包含安装映像

我已经在一台 HP G9 刀片上安装了 RHEV。现在我想创建一个带有 Linux 的客户虚拟机。为了继续,我已将映像复制到 RHEV 机器并将该 iso 安装在 /mnt/iso 中。我使用以下命令进行安装:

virt-install --accelerate --hvm --connect qemu:///system \
--network=bridge:control,model=virtio --ram=4096 --vcpus=2 --os-type=linux \
--os-variant=rhel5.4 --nographics --location=/mnt/iso --name=TestVM2 \
--extra-args='console=ttyS0' --disk none

--location=/mnt/iso是我的挂载点并且 iso 映像在/root

我被困在以下屏幕。有人能建议如何处理吗?

什么类型的媒体包含安装映像?本地 CD/DVD 硬盘 NFS 目录 URL

答案1

问题在于您为选项提供了一个目录--location。当您这样做时,virt-install 只能使用该目录中的 kernel/initrd 进行引导,但不会向虚拟机提供该目录的内容。

手册页也对此发出警告:

           DIRECTORY
               Path to a local directory containing an installable
               distribution image. Note that the directory will not be
               accessible by the guest after initial boot, so the OS installer
               will need another way to access the rest of the install media.

使用目录--location有这个限制,但其他可能的参数没有。

如果您打算为虚拟机提供启动媒体,则应提供 ISO 映像的位置。您无需挂载该映像。例如:

--location /var/lib/libvirt/isos/CentOS-6.10-x86_64-DVD.iso

相关内容