Change ubuntu WSL2 Hostname permanently

CHANGE UBUNTU WSL2 HOSTNAME

It’s quite simple to change hostname in WSL2. That means you can easily change the wsl2 part in this screenshot: Most of the time changing the name in /etc/hostname is enough. However, to change wsl2 hostname permanently, you will need to do some more work. Step 1: Disable network auto generating config First open/create a … Read more

Ubuntu package management cheat sheet

Most used commands (copy directly from the man page) To remove a package To install a package List installed packages Search an installed package To remove mulitple packages using regex wildcard: For example, you want to remove all php related packages on your system, you can do like this: You’ll see messages like these: It … Read more

Install Kubernetes Cluster With Kubeadm On Ubuntu Step By Step

I’ve been trying installing a Kubernetes cluster for while following the official documentation without any success. It turned out the official documentation was missing some important steps (or they put the missing steps else where I couldn’t find). Anyways, if you are struggling to get a Kubernetes up and running, this step by step tutorial … Read more