qemu kvm - não é possível iniciar as VMs após a instalação do hypervisor xen

3

Eu estava usando o QEMU KVM há muito tempo e tenho poucas VMs.

Recentemente, instalei o XEN Hypervisor seguindo estas instruções , mas decidi apt-get remove xen-hypervisor-4.2-amd64

O problema é que agora, eu não posso mais usar o qemu-kmv porque eu recebo o seguinte erro quando tento iniciar máquinas de virt-manager :

Error starting domain: unsupported configuration: Domain requires KVM, but it is not available. Check that virtualization is enabled in the host BIOS, and host configuration is setup to load the kvm modules.

Traceback (most recent call last): File "/usr/share/virt-manager/virtManager/asyncjob.py", line 96, in cb_wrapper callback(asyncjob, *args, **kwargs) File "/usr/share/virt-manager/virtManager/asyncjob.py", line 117, in tmpcb callback(*args, **kwargs) File "/usr/share/virt-manager/virtManager/domain.py", line 1092, in startup self._backend.create() File "/usr/lib/python2.7/dist-packages/libvirt.py", line 681, in create if ret == -1: raise libvirtError ('virDomainCreate() failed', dom=self) libvirtError: unsupported configuration: Domain requires KVM, but it is not available. Check that virtualization is enabled in the host BIOS, and host configuration is setup to load the kvm modules.

Eu tenho os dois qemu-kvm e libvirt-bin em execução:

# service qemu-kvm status
qemu-kvm start/running
# service libvirt-bin status
libvirt-bin start/running, process 10646

Se você precisar de mais informações, por favor, pergunte.

    
por mirkobrankovic 26.07.2013 / 14:30

1 resposta

3

verifique se o seu módulo kvm do kernel ainda está carregado e, se não, carregá-lo.

lsmod | grep kvm

se você não o encontrar, modprobe -v kvm (ou talvez kvm-intel)

    
por 26.07.2013 / 14:48