minikube/site/content/en/docs/Start/linux.md

78 lines
2.0 KiB
Markdown
Raw Normal View History

2019-08-01 20:16:11 +00:00
---
title: "Linux"
linkTitle: "Linux"
weight: 1
---
## Installation
{{% tabs %}}
{{% tab "Direct" %}}
2019-08-01 20:16:11 +00:00
Download and install minikube to /usr/local/bin:
```shell
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 \
&& sudo install minikube-linux-amd64 /usr/local/bin/minikube
```
{{% /tab %}}
{{% tab "Debian/Ubuntu (deb)" %}}
Download and install minikube:
```shell
2020-02-06 19:04:13 +00:00
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_{{< latest >}}-0_amd64.deb \
2020-02-06 19:28:14 +00:00
&& sudo dpkg -i minikube_{{< latest >}}-0_amd64.deb
```
2019-08-01 20:16:11 +00:00
{{% /tab %}}
{{% tab "Fedora/Red Hat (rpm)" %}}
Download and install minikube:
```shell
2020-02-06 19:04:13 +00:00
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-{{< latest >}}-0.x86_64.rpm \
2020-02-06 19:28:14 +00:00
&& sudo rpm -ivh minikube-{{< latest >}}-0.x86_64.rpm
```
2019-08-01 20:16:11 +00:00
{{% /tab %}}
{{% /tabs %}}
2020-03-26 08:14:07 +00:00
## Driver Setup
2019-08-01 20:16:11 +00:00
{{% tabs %}}
2020-03-26 08:14:07 +00:00
{{% tab "Docker" %}}
## Check container support
{{% readfile file="/docs/Reference/Drivers/includes/docker_usage.inc" %}}
{{% /tab %}}
2019-08-01 20:16:11 +00:00
{{% tab "KVM" %}}
2020-03-26 08:14:07 +00:00
## Check virtualization support
{{% readfile file="/docs/Reference/Drivers/includes/check_virtualization_linux.inc" %}}
{{% readfile file="/docs/Reference/Drivers/includes/kvm2_usage.inc" %}}
2019-08-01 20:16:11 +00:00
{{% /tab %}}
{{% tab "VirtualBox" %}}
2020-03-26 08:14:07 +00:00
## Check virtualization support
{{% readfile file="/docs/Reference/Drivers/includes/check_virtualization_linux.inc" %}}
{{% readfile file="/docs/Reference/Drivers/includes/virtualbox_usage.inc" %}}
{{% /tab %}}
2019-08-01 20:16:11 +00:00
{{% tab "None (bare-metal)" %}}
2020-03-26 08:14:07 +00:00
## Check baremetal support
{{% readfile file="/docs/Reference/Drivers/includes/check_baremetal_linux.inc" %}}
2019-08-08 23:24:38 +00:00
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.
2019-08-01 20:16:11 +00:00
{{% readfile file="/docs/Reference/Drivers/includes/none_usage.inc" %}}
2019-08-01 20:16:11 +00:00
{{% /tab %}}
2020-03-26 08:41:20 +00:00
{{% tab "Podman (experimental)" %}}
{{% readfile file="/docs/Reference/Drivers/includes/podman_usage.inc" %}}
{{% /tab %}}
2019-08-01 20:16:11 +00:00
{{% /tabs %}}
{{% readfile file="/docs/Start/includes/post_install.inc" %}}