Hi,<br><br>Got my git/hg builds of libvirtd/virt-manager running together with kvm. Took some time but finally think I'm getting the<br>hang of it.<br><br>I noticed two things going from my pre-packaged Debian packages.<br>
<br>The older xml files I had seemed to generate a faulty kvm cmdline:<br> <br>   <disk type='file' device='cdrom'><br>      <target dev='hdc' bus='ide'/><br>      <readonly/><br>
    </disk><br><br>This seems to translate into a -drive file=,... The file argument for kvm may be empty but should then not be defined:<br>"If you don’t specify the "file=" argument, you define an empty drive". As a result the first vm I tried to start came back<br>
with a message saying it could not open the diskfile. <br><br>Additionally, check below screenshot; the vm names appear to be missing. Here's the complete XML of one vm,<br>did anything change coming from this one?<br>
<br><br><domain type='kvm'><br>  <name>vm1</name><br>  <uuid>ea14abdc-12a4-48cb-1424-46cdf15405f4</uuid><br>  <memory>524288</memory><br>  <currentMemory>524288</currentMemory><br>
  <vcpu>1</vcpu><br>  <os><br>    <type arch='x86_64' machine='pc'>hvm</type><br>    <boot dev='hd'/><br>  </os><br>  <features><br>    <acpi/><br>
    <apic/><br>    <pae/><br>  </features><br>  <clock offset='utc'/><br>  <on_poweroff>destroy</on_poweroff><br>  <on_reboot>restart</on_reboot><br>  <on_crash>restart</on_crash><br>
  <devices><br>    <emulator>/usr/bin/kvm</emulator><br>    <disk type='file' device='disk'><br>      <source file='/kvmimages/vm1.qcow2'/><br>      <target dev='vda' bus='virtio'/><br>
    </disk><br>    <interface type='bridge'><br>      <mac address='54:52:00:0a:dc:10'/><br>      <source bridge='br0'/><br>      <model type='virtio'/><br>    </interface><br>
    <serial type='pty'><br>      <source path='/dev/pts/1'/><br>      <target port='0'/><br>    </serial><br>    <console type='pty' tty='/dev/pts/1'><br>
      <source path='/dev/pts/1'/><br>      <target port='0'/><br>    </console><br>    <input type='mouse' bus='ps2'/><br>    <graphics type='vnc' port='-1' autoport='yes' keymap='en-us'/><br>
  </devices><br></domain><br><br><br><br>