Minikube is a tool that enables developers to run a local Kubernetes cluster for testing and development. It’s lightweight and supports various environments. Key Features Local Kubernetes Clus...
SendMail setup on ubuntu server
Send mail is a cli application for sending email using smtp server. Installation sudo apt install sendmail Configure # Config path "/etc/ssmtp/ssmtp.conf" # The person who gets all mail for us...
NeoVIM installation and setup guide
Neo Vim is a new generation VIM editor. It has beautiful UI. Installation Download NeoVim: wget https://github.com/neovim/neovim/releases/download/v0.10.0/nvim.appimage Install: chmod...
Step by step PostgreSQL setup guide
Purpose of this guide is to provide a step-by-step guide for setting up PostgreSQL and manage databases. Install PostgreSQL Client sudo apt-get install -y postgresql-client Login to Database: ...
Golang debugging guide using dlv debugger
Purpose of this documentation is to provide a comprehensive guide on how to debug Golang applications using the Delve debugger (dlv). This guide covers installation, setting up a remote debugger, a...
Installation guide of terminal multiplexer T-MUX
It is a T-mux user guide. T-mux and VIM works awesome for development. Installation: sudo apt install tmux Open tmux and press Ctrl+b and Shift+I to activate plugins. Configuration: Clone ...
Deploy your own media streaming server with Jellyfin
Jellyfin media streaming server installation guide for Raspberry PI Installation Before we proceed, let us start by ensuring we are running an updated operating system. As long as you are ru...
Setup Network File System (NFS) on ubuntu linux
NFS, an acronym for Network File System, facilitates file sharing and access across a network. Here’s a guide for setting up NFS on both the server and client sides: Server Setup Install ...
GPG key installation or setup guide
Purpose of this guide is to provide a step-by-step guide on how to install and setup GPG key on Ubuntu Server. Create gpg key: gpg --full-generate-key Set ownertrust: gpg --edit-key <key-id...
Install Golang on Ubuntu Server
Purpose of this documentation is to install Golang on Ubuntu Server. Follow these instructions step by step. Let’s Begin Define the Go version to install GO_VERSION="1.24.4" Define the ...