如何让硬盘驱动器为QEMU虚拟化Windows Home Server 2011工作?


2

我已使用virt-install和virsh配置了Windows Home Server 2011 guest虚拟机,但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,因为没有win2011可用于virt-install,afaik。不知道这是否有任何问题。

  • 我做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 viewer成功连接到视口。
  • Windows安装程序已启动,我单击“新安装:安装Windows”。看到这个丝网印刷:

    在此输入图像描述

  • 然后我看到了没有找到硬盘的事实,所以我点击了“加载驱动程序”。

  • 然后,无论我从virtio驱动程序cd映像中选择哪个文件夹,当我点击OK时都不会显示硬盘。看到这个丝网印刷:

在此输入图像描述

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

欢迎任何输入!



谢谢!我将尝试使用虚拟化IDE磁盘的方法。
turboraketti 2014年

Answers:


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。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.