Create-Backups-with-tar-Command

How to Create Backup with tar Command in Linux

Hello Linux Geeks, if you are looking for free command line backup tools on Linux systems then tar command is the solution for you. Tar command can create backup of your application, configurations files and folders of the system. Tar stands for ‘tape archive’ and … Read more

How to Repair Corrupted XFS Filesystem with xfs_repair

Originally created by Silicon Graphics, the XFS file system is a robust and high-performance journaling filesystem that was first included in the Linux kernel in 2001. Since then, the popularity of the filesystem has grown exponentially, and by 2014, the XFS filesystem found its way … Read more

Install-AWX-Kubernetes-Minikube

How to Install Ansible AWX on Kubernetes Minikube

Hello Geeks, I hope you are aware about Ansible AWX, if not then Ansible AWX is a Web based GUI tool for managing ansible playbooks. There are lot of other features of AWX apart from execution of Ansible playbooks like source management integration, logging RBAC … Read more

Rock-Linux-GUI-Dashboard

How to Install Rocky Linux 8.4 Step by Step with Screenshots

Hello Techies, Rocky Linux 8.4 has been released officially by Rocky Enterprise Software Foundation (RESF). It is considered as the replacement of CentOS Linux. Rock Linux is community-based enterprise level operating system and compatible with RHEL (Red Hat Enterprise Linux). As CentOS 8 updates will … Read more

Install-minikube-on-ubuntu-linux

How to Install Minikube on Ubuntu 22.04 | 20.04

In this article, we will cover how to install of Minikube on Ubuntu 22.04 | 20.04 LTS. Minikube is an open-source tool that allows you to run a single-node Kubernetes cluster locally on your machine.Minikube is designed to make it easy for developers to set … Read more

Create-Use-Custom-Facts-Ansible

How to Create and Use Custom Facts in Ansible

Custom facts (local facts) are the variables which are declared on ansible managed host. Custom facts are declared in ini or json file in the /etc/ansible/facts.d directory on managed host. File names of custom facts must have .fact extension. In this article, we will cover … Read more

Analyze-Real-Time-Apache-Nginx-Logs

GoAccess – Analyze Real-Time Apache and Nginx Logs

One of the primary roles of any systems administrator is viewing and analyzing log files. Web server log files from other Apache and Nginx can build up over time and examining them can prove to be a tedious and time-consuming activity. Thankfully, GoAccess can alleviate … Read more

Monitor-Linux-System-With-Glances

How to Monitor Linux System with Glances Command

In the past, we have covered quite a number of command-line monitoring tools in Linux.  These include vmstat, htop and top command to mention a few. The top command is the most widely used command since it comes preinstalled and gives a real-time performance of … Read more

Use-Handlers-in-Ansible-Playbook

How to Use Handlers in Ansible Playbook

In Ansible, a handler is just like any other task but only runs when called or notified. It takes action when a change has been made on the managed host. Handlers are used in initiating a secondary change such as starting or restarting a service … Read more