- Install vmconsole
- Download minukube
-
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 install minikube-linux-amd64 /usr/local/bin/minikube
-
- Running minukube start gives the following error
-
Error loading shared library libresolv.so.2: No such file or directory (needed by /usr/local/bin/minikube) Error relocating /usr/local/bin/minikube: __res_search: symbol not found
-
- running the start command again asks for a driver. choosing
none
as we are already running in a vm - missing iptables tool. install using
-
apk add iptables
-
- missing conntrack-tools
-
❌ Exiting due to GUEST_MISSING_CONNTRACK: Sorry, Kubernetes 1.26.3 requires conntrack to be installed in root's path
- install using
-
apk add conntrack-tools
-
- missing crictl
-
❌ Exiting due to GUEST_MISSING_CONNTRACK: Sorry, Kubernetes 1.26.3 requires crictl to be installed in root's path
- install using
-
apk add cri-tools
-
- Insufficient memory error.