How to create a virtual machine in kvm OpenSUSE 12.1 x86_64 . In x86_32 OpenSUSE everything is created normally.

    2 answers 2

    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 
      1. kvm or libvirt? if libvirt, then you can through the GUI - virt-manager , and you can through cli - virsh / virt-install
      2. kvm is not supported on 32-bit hosts, I do not even advise you to start building something on this
      3. why opensuse?