Use-Loops-Ansible-Playbook

How to Use Loops in Ansible Playbook

In the course of executing tasks in Ansible playbook, you might come across some tasks that are repetitive in nature. These are tasks that require you to create multiple plays, something which can be quite tedious. As with any programming language, loops in Ansible provide … Read more

Setup-NFS-Server-CentOS8-RHEL8

How to Setup NFS Server on CentOS 8 / RHEL 8

An acronym for Network File Share, NFS is a cross-platform client/server protocol that allows clients machines to access files shared by the NFS server over a network. Client systems can locally mount the filesystems from the NFS server and access files and directories as though … Read more

Things-after-install-ubuntu-20-04-lts

Top 14 Things to do After Installing Ubuntu 20.04 LTS

On April 23rd, 2020, the Canonical team released the much-anticipated Ubuntu 20.04  LTS (Focal Fossa)  release. The latest release takes over from its predecessor Ubuntu 18.04 LTS and ships with a new and sleek desktop theme, an improved overall look-and-feel, Linux kernel 5.4, ZFS file … Read more

Install-Redis-Server-CentOS8-RHEL8

How to Install Redis Server on CentOS 8 / RHEL 8

Redis is an acronym for Remote dictionary server. It’s an open source, in-memory and persistent key-value database / store which stores data as key-value pairs and also doubles up as a message broker. Redis supports a wide array of data structures including sets, lists, hashes, … Read more

Install-virtualbox-on-archlinux

How to Install VirtualBox on Arch Linux

VirtualBox is a free and open source, cross platform virtualization tool from Oracle that allows you to create virtual machines and try out different operating systems. It’s easy to install and use and you can create your own virtual machines, assign them resources such as … Read more

Install-yarn-debian10

How to Install Yarn on Debian 10

Yarn is a JavaScript package manager developed by Facebook that provides a list of benefits over its counterpart NPM. Some of these include: Faster rate of package downloads, ability to download offline packages and auto-generation of lock files. In this brief tutorial, we will give … Read more