How to Install Git Version Control System on Debian 11

Git installation on Debian 11 Linux

Git is a distributed version control system that was originally developed by Linus Torvalds in 2005. It has since been made available as an open-source project, allowing for more people to contribute and use it across all platforms of development without charge. It has since grown to be the most widely used distributed version control … Read more

How to enable server-side FastCGI caching with Nginx and PHP

Nginx FastCGI Cache

Nginx is an open-source and high-performance web server that can be used to speed up content and application delivery. Nginx enhances security, improves scalability, and also can be used as a high availability load balancer. It can be used as a reverse proxy and one of the most important uses of Nginx is content caching. … Read more

How to Create Linux OS Templates with KVM on Ubuntu 20.04

Create KVM Templates

KVM refers to the Kernel-based Virtual Machine which helps to run multiple Linux or window-based isolated guests along with their own OS and virtual dedicated hardware. To run KVM your system must be compatible with hardware virtualization extensions, such as AMD-V or Intel-VT. The VM template is a copy of the virtual machine including specific … Read more

MySQL 8 Master-Slave replication on Ubuntu 20.04

MySQL Master-Slave Replication

Sometimes we may need to replicate data from one MySQL DB server to one or more MySQL DB servers automatically. Basically, database administrators perform database-related tasks such as replication, clustering, and auto-failover. Managing MySQL database servers and performing replication tasks are the responsibilities of database experts. In this article, we will learn how to set … Read more

How to Install and Use Docker on Rocky Linux 8

Docker on Rocky Linux

Imagine a box in which you can put all of your files, and it will maintain integrity. This is what Docker does, providing an easy way to manage containers for any application on-premise or cloud-hosted with ease. What’s even better about this tool: It comes free (yes, really) as well as being open source so … Read more

Which local Backup Tool is the best on Linux?

Linux Backup

There are several backup utilities available for Linux. Some of them are based on bash scripts and others are properly crafted open-source software. The problem comes when nothing is available in a default installation. I am a Debian user and I have some preferences to use certain backup utilities to keep my data safe. In … Read more

How to Install FreeRADIUS and Daloradius on Ubuntu 20.04

Ubuntu FreeRadius

What is a freeRADIUS server? RADIUS is a AAA (authentication, authorization, and accounting) protocol that helps in controlling network access. In other words, RADIUS protocol is used for connection management between the Network Access Server (NAS) and Authentication server. The connection between two ends(NAC-NAS or NAS-Authentication server) is initiated after a successful negotiation on the … Read more

Directory structure of the Linux operating system explained

Linux / UNIX directory structure

Unlike the Windows system, Linux does have a lot of different directory structures which we will be discussing today. In Linux, all the directories retain from the root or base directory (/). Inside the base directory, if you use the ls command to list the file and dir you could also see some symlinks that … Read more

How to Install Webmin on CentOS 8 and Rocky Linux 8

Webmin CentOS Rocky Linux

Webmin is an open-source web-based interface that simplifies the administration of Unix systems. Usually, to perform any kind of task in Linux like setting up accounts, setting up web servers, installing software, you have to manually run the commands and edit configuration files. Webmin lets you do all such tasks using a web-based interface. Using … Read more

How to format a harddisk partition with BTRFS on Ubuntu 20.04

BTRFS on Ubuntu

Btrfs or commonly pronounced as b-tree FS or butter FS is a COW (copy-on-write) based disk storage format and filesystem. In btrfs, all characters except / and Null are applicable for creating the files featuring self-healing and the capability of spanning multiple volumes. It was initially developed by Oracle in 2007 and developed by multiple … Read more