minikube: Unable to start VM: create: precreate: This computer doesn't have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory
I am using Centos 7 VPS
I run this command
minikube start --cpus 1 --memory 1024 --kubernetes-version v1.13.0
but the result is :
😄 minikube v0.35.0 on linux (amd64) 🔥 Creating virtualbox VM (CPUs=1, Memory=1024MB, Disk=20000MB) … 💣 Unable to start VM: create: precreate: This computer doesn’t have VT-X/AMD-v enabled. Enabling it in the BIOS is mandatory
😿 Sorry that minikube crashed. If this was unexpected, we would love to hear from you: 👉 https://github.com/kubernetes/minikube/issues/new
also I run lscpu | grep Virtualization and the result is:
Virtualization type: full
my cpu model is

About this issue
- Original URL
- State: closed
- Created 5 years ago
- Comments: 32 (2 by maintainers)
Do you mind trying this:
minikube start --no-vtx-checkIt’s hard to check from here if it’s due to the new upstream checks in place, or if things might actually work. Also, I suspect that passing in that small amount of memory might yield further issues down the line.
Hey , I had a same issue , i try something it s work for me : i specified where i need to install minikube on windows 10 (in my virtualbox)
minikube type: Control Plane host: Running kubelet: Running apiserver: Running kubeconfig: Configured timeToStop: Nonexistent
Hi @tstromberg, I tried your suggestion but encounter an error:
Do you know what is this about? I’m trying to run kubernetes in VPS.
i try to download virtualbox , and use cmd(Administrator) keyin
bcdedit /set hypervisorlaunchtype offand restart pcand use cmd keyin
minikube startand its work Win10 home 2004other cmd ->cd
C:\Program Files\Oracle\VirtualBoxkeyinVBoxManage.exe modifyvm "minikube" --nested-hw-virt onI am using minikube on a newly launched EC2 - Ubuntu 18.04, I met the same errors, here’s what I did to fix:
sudo minikube start --no-vtx-checkand got original errors.sudo minikube start --vm-driver=noneand got new errors:😄 minikube v1.20.0 on Ubuntu 18.04 ✨ Using the none driver based on user configuration
❌ Exiting due to GUEST_MISSING_CONNTRACK: Sorry, Kubernetes 1.20.2 requires conntrack to be installed in root’s path
Then I type
sudo apt-get install -y conntrackTry again
sudo minikube start --vm-driver=noneand got succeed messages.Thanks, this works for me
also getting the same issues:
Check virtualisation :
BIOS has virtualisation enabled
running with
--no-vtx-checkflag works:For more context, just trying to run minikube on my local machine.
This issue only crept up for me on minikube
v1.2.0