Error:-
Unable to start VM: create: precreate: VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path
Occurence:-
Following Error during the minikube installation on the virtualbox VM
Cause/Resolution:-
Minikube and Vagrant vm dont work good simultaneously as its like running type2 virtualization over another type2 virtualization.
However it makes sense to run minikube on linux and if you running windows machine and want linux machine than you want to use virtualbox.
The solution is to disable the vm-driver of minikube to none as follows
Unable to start VM: create: precreate: VBoxManage not found. Make sure VirtualBox is installed and VBoxManage is in the path
Occurence:-
Following Error during the minikube installation on the virtualbox VM
Cause/Resolution:-
Minikube and Vagrant vm dont work good simultaneously as its like running type2 virtualization over another type2 virtualization.
However it makes sense to run minikube on linux and if you running windows machine and want linux machine than you want to use virtualbox.
The solution is to disable the vm-driver of minikube to none as follows
./minikube config set vm-driver none
That should solve your problem
Thank you!
ReplyDelete