更改QEMU-KVM虚拟机的引导设备


8

我正在尝试更改VM的启动设备。我进入/etc/libvirt/qemu并设置了VM的XML文件<boot dev='cdrom' />。尽管如此,它还是尝试从硬盘驱动器而不是从cdrom启动。

我知道我已经在CD-ROM虚拟设备上加载了ISO映像。

我这样做不正确吗?我尝试完全关闭VM,然后将其重新启动却无济于事。也许我需要以某种方式重新加载设置?

编辑:

根据@Selivanov的要求:

$ libvirtd --version
libvirtd (libvirt) 0.8.7

和XML文件:

<domain type='kvm'>
  <name>nimmy.example.com</name>
  <uuid>(SNIP)</uuid>
  <memory>524288</memory>
  <currentMemory>524288</currentMemory>
  <vcpu>1</vcpu>
  <os>
    <type arch='x86_64' machine='rhel6.1.0'>hvm</type>
    <boot dev='cdrom'/>
  </os>
  <features>
    <acpi/>
    <apic/>
    <pae/>
  </features>
  <clock offset='utc'/>
  <on_poweroff>destroy</on_poweroff>
  <on_reboot>restart</on_reboot>
  <on_crash>restart</on_crash>
  <devices>
    <emulator>/usr/libexec/qemu-kvm</emulator>
    <disk type='file' device='disk'>
      <driver name='qemu' type='raw' cache='none'/>
      <source file='/var/lib/libvirt/images/nimmy.img'/>
      <target dev='hda' bus='ide'/>
      <address type='drive' controller='0' bus='0' unit='0'/>
    </disk>
    <disk type='file' device='cdrom'>
      <driver name='qemu' type='raw'/>
      <source file='/home/nimmy/CentOS-6.0-x86_64-netinstall.iso'/>
      <target dev='hdc' bus='ide'/>
      <readonly/>
      <address type='drive' controller='0' bus='1' unit='0'/>
    </disk>
    <controller type='ide' index='0'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x01' function='0x1'/>
    </controller>
    <interface type='network'>
      <mac address='(SNIP)'/>
      <source network='default'/>
      <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='mouse' bus='ps2'/>
    <graphics type='vnc' port='-1' autoport='yes'/>
    <sound model='ac97'>
      <address type='pci' domain='0x0000' bus='0x00' slot='0x04' function='0x0'/>
    </sound>
    <video>
      <model type='cirrus' 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>

Answers:


8

如果libvirt在启动/停止时未重新加载VM设置,则virsh edit命令可能会有所帮助。并且请编写整个XML文件和libvirt版本

嗯...一切似乎都很好。尝试添加

<boot dev='hd'/>
<boot dev='cdrom'/>
<bootmenu enable='yes'/>

进入<os>部分,查看cdrom是否出现在启动菜单中。也尝试从<os>删除所有<boot>记录并添加

<boot order='1'/>

到<disk>部分


显然,我必须关闭virt-manager才能重新加载设置。这是通常情况吗?有没有办法重新加载设置?另外,我对于为什么virt-manager不进行设置感到困惑。
Belmin Fernandez 2011年

1
如果您的发行版中的init脚本支持libvirt-bin服务,则可以重新加载它,例如在ubuntu:中sudo reload libvirt-bin。如果使用外部编辑器编辑了xml文件,这是正常的。如果您使用virsh edit或更改了virt-manager中的设置,则此错误。
Selivanov Pavel

如果您编辑XML文件,则需要重新加载VM才能生效。/etc/init.d/libvirt-bin重新加载

1

如果虚拟机关闭,请在/ var / lib / libvirt / qemu / save下查找已存储的已保存映像-尽管通过virsh编辑进行了更改,它仍将保留旧参数。在类似的情况下,我删除了此类映像,因为它一直在寻找不存在的网络接口(因此无法启动)。

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.