Posted inArticles, Linux, Neovim

Install Neovim on Ubuntu

This article will cover how to install the latest builds of Neovim on Ubuntu. We will be using the unstable PPA repository since it gets updated more often, this means we get new features and bug fixes faster. If you need extreme stability in your environment, I recommend going with the stable Neovim PPA just […]

Posted inArticles, Linux

Kickstart Neovim on Linux

Kickstart.nvim is a starter configuration for Neovim that is small, single-file and well-documented. You can use it as a starting point to create your custom configuration. I have been using it for a while now with a few changes. Setting up Kickstart.nvim Creating the config directory (Skip this step if you already have it setup) […]

Posted inArticles, Linux

Upgrade Ubuntu from EOL to GA

If you have an unattended Ubuntu desktop or server running an old or non-long-term release, it’s time to upgrade to the current generally available release. Follow this guide to upgrade from End Of Life to General Availability. You can check what release of Ubuntu you have installed by running the command below. If you encounter […]

Posted inArticles, Linux

How to install Minikube on Rocky Linux

Minikube is a tool that makes it easy to run a single-node Kubernetes cluster locally on your computer. It allows developers to test and experiment with Kubernetes without needing a remote cluster. Minikube runs a virtual machine on your local machine and then deploys a cluster inside that virtual machine. It uses virtualization software such […]

Posted inArticles, Linux

How to install Docker on Rocky Linux

Docker is a platform for developers and system administrators to develop, ship, and run applications in containers. Containers are lightweight, portable, and self-sufficient environments that allow applications to run consistently across different environments. It allows developers to package their applications and dependencies into a container, which can then be easily deployed and run on any […]