Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the js_composer domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /home/holhol2/public_html/wp-includes/functions.php on line 6121
Install qBittorrent on Ubuntu 18.04 / 16.04 / Linux Mint 18 / Fedora 27/26

Install qBittorrent on Ubuntu 18.04 / 16.04 / Linux Mint 18 / Fedora 27/26

qBittorrent is a simple yet very fast open source BitTorrent client for Linux operating system. It is often called as an alternative to uTorrent because it comes with uTorrent like user interface, configuration settings, integrated search engine and much more. If you are the one looking for the best open source BitTorrent client, then qBitttorent […]

Setup Docker Private Registry on CentOS 7

How to Setup Docker Private Registry on CentOS 7 / Ubuntu 16.04

Docker registry is a piece of application that lets you store and distribute the Docker images internally (within your organization). Docker even has a public registry, known as Docker Hub, free to store Docker images. But, the problem with Docker public registry is that the images you upload on it becomes public. This is not […]

How to Install and Configure Docker Swarm on CentOS 7 / Ubuntu 16.04 / Fedora 26/25

How to Install and Configure Docker Swarm on CentOS 7 / Ubuntu 16.04 / Fedora 26/25

Docker swarm is (aka Docker engine in swarm mode) a native clustering solution that makes a group of Docker hosts into a single logical virtual server. Swarm ensures availability and high performance of your application by distributing it over the number of Docker hosts inside a cluster. Also, with Docker swarm, you can scale your […]

How To Install Graylog 3.0 on CentOS 7 / RHEL 7 - Centos/Redhat

How To Install Graylog 3.0 on CentOS 7 / RHEL 7 – Centos/Redhat

Graylog is an open-source log management tool which helps you to collect, index and analyze any machine logs centrally. This guide will help you to install Graylog on CentOS 7 / RHEL 7. Components MongoDB – Being a database to store the configurations and meta information. Elasticsearch – It stores the log messages received from […]

Use Flow Control Statements in Awk

How to Use Flow Control Statements in Awk – Part 12

When you review all the Awk examples we have covered so far, right from the start of the Awk series, you will notice that all the commands in the various examples are executed sequentially, that is one after the other. But in certain situations, we may want to run some text filtering operations based on […]

How to Write Scripts Using Awk Programming Language

How to Write Scripts Using Awk Programming Language – Part 13

All along from the beginning of the Awk series up to Part 12, we have been writing small Awk commands and programs on the command line and in shell scripts respectively. However, Awk, just as Shell, is also an interpreted language, therefore, with all that we have walked through from the start of this series, […]

How to Allow Awk to Use Shell Variables – Part 11

How to Allow Awk to Use Shell Variables – Part 11

When we write shell scripts, we normally include other smaller programs or commands such as Awk operations in our scripts. In the case of Awk, we have to find ways of passing some values from the shell to Awk operations. This can be done by using shell variables within Awk commands, and in this part […]

Awk Built in Variables Examples

Learn How to Use Awk Built-in Variables – Part 10

As we uncover the section of Awk features, in this part of the series, we shall walk through the concept of built-in variables in Awk. There are two types of variables you can use in Awk, these are; user-defined variables, which we covered in Part 8 and built-in variables. Awk Built in Variables Examples Built-in […]

Learn Awk Patterns BEGIN and END

Learn How to Use Awk Special Patterns ‘BEGIN and END’ – Part 9

In Part 8 of this Awk series, we introduced some powerful Awk command features, that is variables, numeric expressions and assignment operators. As we advance, in this segment, we shall cover more Awk features, and that is the special patterns: BEGIN and END. Learn Awk Patterns BEGIN and END These special features will prove helpful […]