VirtualBox can’t operate in VMX root mode
Fallo al abrir una sesión para la máquina virtual <nombredelamaquina>
VirtualBox can’t operate in VMX root mode.
Please disable the KVM kernel extension, recompile your kernel and reboot (VERR_VMX_IN_VMX_ROOT_MODE).
Solución de (solo-ubuntu)
En primer lugar: averiguar los módulos cargados (kvm):
/sbin/lsmod | grep kvm kvm_intel 23169 0 kvm 89201 1 kvm_intel
Eliminamos el módulo kvm_intel y luego el kvm (orden de dependencias):
sudo /sbin/modprobe -r kvm_intel sudo /sbin/modprobe -r kvm
Ahora ya se puede arrancar las MV.