|
| 1 | +--- |
| 2 | +title: "Linux" |
| 3 | +linkTitle: "Linux" |
| 4 | +weight: 1 |
| 5 | +aliases: |
| 6 | + - /docs/start/linux/ |
| 7 | +--- |
| 8 | + |
| 9 | +## Installation |
| 10 | + |
| 11 | +{{% tabs %}} |
| 12 | +{{% tab "Direct" %}} |
| 13 | + |
| 14 | +Download and install minikube to /usr/local/bin: |
| 15 | + |
| 16 | +```shell |
| 17 | + curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \ |
| 18 | + && sudo install minikube-linux-amd64 /usr/local/bin/minikube |
| 19 | +``` |
| 20 | +{{% /tab %}} |
| 21 | +{{% tab "Debian/Ubuntu (deb)" %}} |
| 22 | + |
| 23 | +Download and install minikube: |
| 24 | + |
| 25 | +```shell |
| 26 | +curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_{{< latest >}}-0_amd64.deb \ |
| 27 | + && sudo dpkg -i minikube_{{< latest >}}-0_amd64.deb |
| 28 | + ``` |
| 29 | + |
| 30 | +{{% /tab %}} |
| 31 | + |
| 32 | +{{% tab "Fedora/Red Hat (rpm)" %}} |
| 33 | + |
| 34 | +Download and install minikube: |
| 35 | + |
| 36 | +```shell |
| 37 | +curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-{{< latest >}}-0.x86_64.rpm \ |
| 38 | + && sudo rpm -ivh minikube-{{< latest >}}-0.x86_64.rpm |
| 39 | + ``` |
| 40 | + |
| 41 | +{{% /tab %}} |
| 42 | +{{% /tabs %}} |
| 43 | + |
| 44 | +## Driver Setup |
| 45 | + |
| 46 | +{{% tabs %}} |
| 47 | +{{% tab "Docker" %}} |
| 48 | +## Check container support |
| 49 | +{{% readfile file="/docs/drivers/includes/docker_usage.inc" %}} |
| 50 | +{{% /tab %}} |
| 51 | + |
| 52 | +{{% tab "KVM" %}} |
| 53 | +## Check virtualization support |
| 54 | +{{% readfile file="/docs/drivers/includes/check_virtualization_linux.inc" %}} |
| 55 | + |
| 56 | +{{% readfile file="/docs/drivers/includes/kvm2_usage.inc" %}} |
| 57 | +{{% /tab %}} |
| 58 | +{{% tab "VirtualBox" %}} |
| 59 | +## Check virtualization support |
| 60 | +{{% readfile file="/docs/drivers/includes/check_virtualization_linux.inc" %}} |
| 61 | + |
| 62 | +{{% readfile file="/docs/drivers/includes/virtualbox_usage.inc" %}} |
| 63 | +{{% /tab %}} |
| 64 | +{{% tab "None (bare-metal)" %}} |
| 65 | +## Check baremetal support |
| 66 | +{{% readfile file="/docs/drivers/includes/check_baremetal_linux.inc" %}} |
| 67 | + |
| 68 | +If you are already running minikube from inside a VM, it is possible to skip the creation of an additional VM layer by using the `none` driver. |
| 69 | + |
| 70 | +{{% readfile file="/docs/drivers/includes/none_usage.inc" %}} |
| 71 | +{{% /tab %}} |
| 72 | +{{% tab "Podman (experimental)" %}} |
| 73 | +{{% readfile file="/docs/drivers/includes/podman_usage.inc" %}} |
| 74 | +{{% /tab %}} |
| 75 | + |
| 76 | + |
| 77 | +{{% /tabs %}} |
| 78 | + |
| 79 | +{{% readfile file="/docs/start/includes/post_install.inc" %}} |
0 commit comments