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: ...
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 ...
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 ...
Deploy your self-hosted github action runner
Prerequisites Purpose of this documentation to setup self-hosted github action runner and use it for continuous integration and deployment. Let’s start create work directory and give user perm...
Make your own self-hosted docs server using Bookstack
BookStack is a simple, self-hosted, easy-to-use platform for organizing and storing documentation. It’s a web application that makes it easy to create, store, and share your documents, knowledge ba...
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 ...
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...
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. GPG Installation Install gnupg: sudo apt update sudo apt install gnupg ...
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...