How to install Minikube on Ubuntu?

by toy.waelchi , in category: Other , a year ago

How to install Minikube on Ubuntu?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

Member

by samara , a year ago

@toy.waelchi 

To install Minikube on Ubuntu, follow these steps:

  1. Update your system:
1
sudo apt-get update


  1. Install a virtualization software, such as VirtualBox or KVM:
1
2
3
4
5
sudo apt-get install virtualbox

# OR

sudo apt-get install qemu-kvm libvirt-bin virt-manager virt-viewer


  1. Download the Minikube binary using curl:
1
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64


  1. Add the executable permission to the downloaded file:
1
sudo chmod +x minikube-linux-amd64


  1. Move the binary file to the /usr/local/bin directory to make it accessible globally:
1
sudo mv minikube-linux-amd64 /usr/local/bin/minikube


  1. Install kubectl, the Kubernetes command-line interface tool:
1
sudo apt-get install kubectl


  1. Start Minikube:
1
minikube start


Now, Minikube should be installed on your Ubuntu machine and can be used to spin up a local Kubernetes cluster.

Related Threads:

How to install minikube on Ubuntu?
How to install Minikube in Ubuntu 20.04?
How to install Minikube in Ubuntu 18.04?
How to install Minikube in Ubuntu 22.04?
How to remove minikube from Ubuntu?