How to create a virtual machine in kvm OpenSUSE 12.1 x86_64 . In x86_32 OpenSUSE everything is created normally.
|
2 answers
Verify that the kernel module is loaded:
lsmod | grep kvm Creating a virtual machine:
qemu-img create -f qcow /vms/vmtest.img 10Gqemu-system-x86_64 -hda /vms/vmtest.img -cdrom /media.iso -boot d -m 512 |
- kvm or libvirt? if libvirt, then you can through the GUI -
virt-manager, and you can through cli -virsh/virt-install - kvm is not supported on 32-bit hosts, I do not even advise you to start building something on this
- why opensuse?
|