#1 - Update your system with the latest version:
apt-get update -y && apt-get upgrade -y
. Use sudo if needed.
#2 - Check if virtualization is supported on Linux:
grep -E --color ‘vmx|svm’ /proc/cpuinfo
#3 - Install required packages (optional):
apt-get install curl wget apt-transport-https -y
#4 - Install VirtualBox Hypervisor:
apt-get install virtualbox virtualbox-ext-pack
#5 - Download Minikube :
wget https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
#6 - Copy the downloaded file to /usr/local/bin:
cp minikube-linux-amd64 /usr/local/bin/minikube
#7 - Give execution permission:
sudo chmod 755 /usr/local/bin/minikube
#8 - Verify Installation :
minikube version
#1 - Download binary file :
curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
#2 - Make the binary executale :
chmod +x ./kubectl
#3 - Move binary to your path :
sudo mv ./kubectl /usr/local/bin/kubectl
#4 - Check the installation :
kubectl version -o json
That's it. Cheers!