Hide Forgot
Created attachment 568547 [details] screen shot Description of problem: The kvm guest can not run correctly on the same release of F17-Beta1. Version-Release number of selected component (if applicable): How reproducible: Always Steps to Reproduce: 1.Prepare a machine with the current development release (Fedora 17) installed 2.Install virt-manager (or other tool to control KVM virtual machines) 3.Create a virtual machine and boot the current development release in it 4.Proceed with normal installation Actual results: The install failed Expected results: The install completes successfully Additional info:
Are you trying to create a VM inside a VM? If so that error is expected, since libvirt inside a VM by default conflicts with the host VMs networking, and won't start. You'll need to change the default network XML to use a different address range: sudo virsh net-dumpxml default | sed "s/192.168.122/192.168.123/g" > new.xml sudo virsh net-define new.xml sudo virsh net-destroy default && sudo virsh net-start default Why this was working in f17 alpha I'm not sure, but it shouldn't have worked. Closing as NOTABUG, please reopen if you think I've missed something.