如何让硬盘适用于 QEMU 虚拟化的 Windows Home Server 2011?

如何让硬盘适用于 QEMU 虚拟化的 Windows Home Server 2011?

我已经使用 virt-install 和 virsh 配置了 Windows Home Server 2011 客户机,但 Windows 安装程序找不到任何硬盘驱动器。它也无法为其加载任何 virtio 驱动程序。

这是我第一次尝试 qemu/kvm 虚拟化,所以也许我只是忽略了一些显而易见的东西,但任何帮助都会很感激!以下是详细信息:

  • 我使用 virt-install 0.600.4 创建了域。

命令:

virt-install --connect qemu:///system -n fas -r 6144 --vcpus=2 \
  --disk pool=vmstore,size=50,bus=virtio,cache=none -c whs2011.iso --vnc \
  --noautoconsole --os-type windows --os-variant win2k8 \
  --network network=default,model=e1000 \
  --disk path=virtio-win-0.1-74.iso,device=cdrom,perms=ro

我使用 os-variant win2k8,因为据我所知,virt-install 没有可用的 win2011。不知道这是否会造成麻烦。

  • 我确实virsh destroy fas阻止了它,
  • 我对其进行了修改,virsh edit fas将 cdrom 添加为第一启动设备。

该域的最终 xml 为:

<domain type='kvm'>
  <name>fas</name>
  <uuid>3d170dbf-c96e-5b0c-0e75-0bd2d6c5e98c</uuid>
  <memory unit='KiB'>6291456</memory>
  <currentMemory unit='KiB'>6291456</currentMemory>
  <vcpu placement='static'>2</vcpu>
  <os>
    <type arch='x86_64' machine='pc-i440fx-1.5'>hvm</type>
    <boot dev='cdrom'/>
    <boot dev='hd'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <clock offset='localtime'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <emulator>/usr/bin/kvm</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw' cache='none'/>
      <source file='/var/lib/libvirt/images/fas.img'/>
      <target dev='vda' bus='virtio'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/nb/whs2011.iso'/>
      <target dev='hda' bus='ide'/>
      <readonly/>
      <address type='drive' controller='0' bus='0' target='0' unit='0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/nb/virtio-win-0.1-74.iso'/>
      <target dev='hdc' bus='ide'/>
      <readonly/>
      <address type='drive' controller='0' bus='1' target='0' unit='0'/>
    </disk>
    <controller type='usb' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x2'/>
    </controller>
    <controller type='pci' index='0' model='pci-root'/>
    <controller type='ide' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <interface type='network'>
      <mac address='52:54:00:84:3b:8b'/>
      <source network='default'/>
      <model type='e1000'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x03' function='0x0'/>
    </interface>
    <serial type='pty'>
      <target port='0'/>
    </serial>
    <console type='pty'>
      <target type='serial' port='0'/>
    </console>
    <input type='tablet' bus='usb'/>
    <input type='mouse' bus='ps2'/>
    <graphics type='vnc' port='-1' autoport='yes'/>
    <video>
      <model type='vga' vram='9216' heads='1'/>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x02' function='0x0'/>
    </video>
    <memballoon model='virtio'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x05' function='0x0'/>
    </memballoon>
  </devices>
</domain>
  • 然后我又重新开始了virsh start fas
  • 使用 vnc 查看器成功连接到查看端口。
  • Windows 安装程序已启动,我单击了“新安装:安装 Windows”。请参阅此屏幕截图:

    在此处输入图片描述

  • 然后我发现找不到硬盘,所以我点击了“加载驱动程序”。

  • 然后,无论我从 virtio 驱动程序 CD 映像中选择哪个文件夹,当我点击“确定”时都不会显示任何硬盘。请参阅此屏幕截图:

在此处输入图片描述

我的系统是最新的 Ubuntu Server 13.10(内核 3.11.0-14-generic),运行在 HP Proliant ML330 G6(四核 Intel Xeon @2.4GHz)上。QEMU 版本是 1.5.0。

欢迎任何意见!

答案1

我终于在以下指导下搞定了这个问题:https://serverfault.com/a/452857/126632(链接由 Michael Hampton 提供)。我主要做了以下事情:

  • 使用 Mac 的磁盘实用程序为自己制作了一个小的、空的辅助 FAT 磁盘映像
  • 删除域名:virsh delete fas
  • 再次创建它,使用稍微修改过的命令(将磁盘总线更改为 IDE,并且增加了磁盘大小,因为 WHS 会抱怨除非它非常大,并将辅助映像添加为 virtio 总线上的磁盘)

命令:

virt-install --connect qemu:///system -n fas -r 6144 --vcpus=2 \
  --disk pool=vmstore,size=200,bus=ide,cache=none -c whs2011.iso --vnc \
  --noautoconsole --os-type windows --os-variant win2k8 \
  --network network=default,model=e1000 \
  --disk path=virtio-win-0.1-74.iso,device=cdrom,perms=ro \
  --disk path=my-helper-image.iso,bus=virtio,cache=none
  • <boot dev='cdrom'/>再次在现有行前添加<boot dev='hd'/>virsh edit fas以使其从 CD 映像启动。
  • 做到了virsh start fas,使用 VNC 查看器连接到机器以显示 0(端口 5900),并执行漫长而曲折的 WHS2011 安装。
  • 最后,在 Windows 桌面上,打开设备管理器并安装 virtio 缺少的驱动程序,需要挂载辅助映像(右键单击未知设备并选择“更新驱动程序”)。
  • 关闭虚拟机并virsh edit fas删除安装介质 whs2011.iso 和辅助映像,并将启动盘的总线类型更改为 virtio,即删除元素address(它将自动再次创建)并更改target属性,如下所示:<target dev='vda' bus='virtio'/>

接下来,启动机器(virsh start fas),现在我在 SCSI 启动盘上享受 WHS 2011。

相关内容