Estoy intentando iniciar minikube con el comando "minikube start --vm-driver=virtualbox". Antes de instalar VirtualBox 6.1.18 para Linux (ubuntu 20.04). pero cuando ejecuto el comando de inicio, el shell arroja un error. Alguien me puede ayudar con eso
muchas gracias!!!
StartHost failed, but will try again: creating host: create: creating: Unable to start the VM: /usr/bin/VBoxManage startvm minikube --type headless failed: VBoxManage: error: AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED) VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole Details: 00:00:00.173843 Power up failed (vrc=VERR_SVM_DISABLED, rc=NS_ERROR_FAILURE (0X80004005)) 🔥 Creating virtualbox VM (CPUs=2, Memory=3900MB, Disk=20000MB) ... 😿 Failed to start virtualbox VM. Running "minikube delete" may fix it: creating host: create: creating: Unable to start the VM: /usr/bin/VBoxManage startvm minikube --type headless failed: VBoxManage: error: AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED) VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole Details: 00:00:00.172445 Power up failed (vrc=VERR_SVM_DISABLED, rc=NS_ERROR_FAILURE (0X80004005)) ❌ Exiting due to HOST_SVM_DISABLED: Failed to start host: creating host: create: creating: Unable to start the VM: /usr/bin/VBoxManage startvm minikube --type headless failed: VBoxManage: error: AMD-V is disabled in the BIOS (or by the host OS) (VERR_SVM_DISABLED) VBoxManage: error: Details: code NS_ERROR_FAILURE (0x80004005), component ConsoleWrap, interface IConsole Details: 00:00:00.172445 Power up failed (vrc=VERR_SVM_DISABLED, rc=NS_ERROR_FAILURE (0X80004005)) 💡 Suggestion: Your host does not support virtualization. If you are running minikube within a VM, try '--driver=docker'. Otherwise, enable virtualization in your BIOS 🍿 Related issue: https://github.com/kubernetes/minikube/issues/7074Esto generalmente se debe a que la virtualización se ha deshabilitado en la BIOS de su máquina y no permite que VirtualBox se inicie correctamente. Por lo general, solo necesita ingresar la configuración de su BIOS y habilitar el Modo de máquina virtual segura
Para obtener más información, consulte esta publicación https://appuals.com/fix-amd-v-is-disabled-in-the-bios-verr_svm_disabled/
Por lo general, solo necesita ingresar la configuración de su BIOS y habilitar el Modo de máquina virtual segura
tal como dijiste. Tengo que entrar en las configuraciones avanzadas de la bios de la placa base y habilitar el Modo Máquina Virtual Segura.
Gracias