PAUL'S BLOG

Learn. Build. Share. Repeat.

Installing Ubuntu Server 22.04

2024-08-08 6 min read Tutorial Kubernetes Certification
Kubernetes on your Laptop (3 part series) Installing VMware Fusion Installing Ubuntu Server 22.04 Installing Kubernetes 1.30 This is the second post in my “Kubernetes on your Laptop” series. In this post, I’ll show you how to install Ubuntu Server on a virtual machine using VMware Fusion. If you need help installing VMware Fusion, check out my previous post. Download Ubuntu Server Image First thing we need to do is download the Ubuntu Server image based on your machine’s architecture: Continue reading

Installing .NET on Ubuntu

2023-09-09 1 min read Code Snippets
Installing .NET on Ubuntu is supposed to be easy. Sometimes it’s not. You should be able to follow the instructions on the Microsoft docs and install from a package manager but I’ve had issues with that. It’s been a frustrating experience; the package installs but then I can’t run dotnet --version and I can’t figure out why. Thankfully there is an option to manually install .NET, this is what I’ve had the most success with. Continue reading

Ubuntu Dev Tools

2022-11-11 3 min read Code Snippets
Is this the year of the Linux desktop? I’m not sure but I have been making more of an effort to “daily drive” a Linux desktop lately. I’m currently working off of an Ubuntu 22.10 machine and here is my script for installing common tools that I work with daily. sudo apt-get update sudo apt-get upgrade # add git repository sudo add-apt-repository ppa:git-core/ppa # install some basic tools sudo apt-get update sudo apt-get install -y \ python3 \ python3-pip \ bpytop \ tree \ guvcview \ vim \ curl \ git \ gnupg2 \ jq \ sudo \ zsh \ build-essential \ cmake \ libssl-dev \ openssl \ unzip \ pkg-config # install brew tools /bin/bash -c "$(curl -fsSL https://raw. Continue reading