Recently I just repurposed two old laptops and install Linux Mint 22.2 on them. My main goals for these old laptops are 1) As my HomeLab so I can test out different software and configuration to pick up new tech skills , 2) Setup home networking and turn one of them as Kubernetes Cluster for up coming AI projects.
I will document the journey of this project in a series of blog posts to share with you and future me what have I done wrong and right while roasting coffee bean on my deck.
First, I got two laptops laying around my house that I have stop using for many years. And last weekend I decided to repurpose them for my personal learning projects.
Pre-requisites :
- Old laptop
- USB drive (at least 8 GBs)
- Another Windows another desktop/laptop (to create booatable USB drive)
I follow the steps below to install Linux Mint 22.2 onto the old laptop.
- Restart the laptop and boot into the BIOS and reconfigure the boot sequence to USB first.
- Downloaded Linux Mint 22.2 form https://linuxmint.com/download.php.
- Download Rufus from https://rufus.ie/en/ and “burn” Linux Mint 22.2 to a USB drive.
- Plug in the USB drive onto the laptop and restart the laptop.
- Wait till the “Mint Live Operating System” fully load, click on the “Install Mint Linux” icon. This will start the installation process.
The following steps are how to install and start up Minikube on Lint Mint”
- Install Docker
- Install Minikube
- Open a terminate and run the following commands to install Minikube
curl -LO https://github.com/kubernetes/minikube/releases/latest/download/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube && rm minikube-linux-amd64
- Open a terminate and run the following commands to install Minikube
- Ran into the following error
- Run the following command to resolve the error:
- sudo usermod -aG docker $USER && newgrp docker