From 92b5b7954d90d046af0f03de2323a4a2501dd1c4 Mon Sep 17 00:00:00 2001 From: peterlobster <38382145+peterlobster@users.noreply.github.com> Date: Fri, 26 Oct 2018 13:38:23 -0700 Subject: [PATCH] Updated Hyperkit Instructions The instructions for HyperKit produce the error `install: root: Invalid argument`. @ran-dall Helped me figuire out that root was not being permited foir this command, and sent me the fix for my machine. Figure I'd share it here. --- docs/drivers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/drivers.md b/docs/drivers.md index cb05423ff..853bc411d 100644 --- a/docs/drivers.md +++ b/docs/drivers.md @@ -87,7 +87,7 @@ To install the hyperkit driver: ```shell curl -LO https://storage.googleapis.com/minikube/releases/latest/docker-machine-driver-hyperkit \ -&& sudo install -o root -g root -m 4755 docker-machine-driver-hyperkit /usr/local/bin/ +&& sudo install -o root -g wheel -m 4755 docker-machine-driver-hyperkit /usr/local/bin/ ``` The hyperkit driver currently requires running as root to use the vmnet framework to setup networking. -- GitLab