Install and Enable Bash Auto Completion in CentOS/RHEL

Bash (Bourne Again Shell) is undoubtedly the most popular Linux shell out there, no wonder it is the default shell on many Linux distributions. One of its most charming features is the built-in “auto-completion” support. Sometimes referred to as TAB completion, this feature permits you to easily complete a command structure. It allows typing a partial command, then pressing the [Tab] key […]

Share:
Continue Reading

Install Google Chrome 69 on CentOS/RHEL/Fedora

In this tutorial we will show you how to install Google Chrome 69 browser in RHEL/CentOS 7.x and Fedoradistributions using Google’s own repository with Yum tool. Important: Google Chrome support for all 32-bit Linux distributions is deprecated from March, 2016. Update Google’s official repository yum update google-chrome-stable Enable Google YUM repository nano /etc/yum.repos.d/google-chrome.repo File content: [google-chrome] name=google-chrome baseurl=http://dl.google.com/linux/chrome/rpm/stable/$basearch enabled=1 gpgcheck=1 gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub Installing Chrome Web Browser Check […]

Share:
Continue Reading

Auto backup Web Server to Google Drive

Rclone is a command line program to sync files and directories to and from: Amazon Drive Amazon S3 DigitalOcean Spaces Dropbox Google Cloud Storage Google Drive Mega Microsoft Azure Blob Storage Microsoft OneDrive And more here  Install Rclone mkdir -p /home/backup #Linux 64 bit: cd /home/backup wget https://downloads.rclone.org/v1.41/rclone-v1.41-linux-amd64.zip unzip rclone-v*.zip \cp rclone-v*-linux-amd64/rclone /usr/sbin/ rm -rf […]

Share:
Continue Reading

Install Elasticsearch on Ubuntu 18.04 /16.04 LTS

Elasticsearch is a flexible and powerful open source, distributed real-time search and analytics engine. Using a simple set of APIs, it provides the ability for full-text search. Elastic search is freely available under the Apache 2 license, which provides the most flexibility. This tutorial will help you to install Elasticsearch on Ubuntu 18.04 & 16.04 […]

Share:
Continue Reading

Enable and Monitor PHP-FPM Status in Nginx

PHP-FPM (FastCGI Process Manager) is an alternative PHP FastCGI implementation that comes with a number of extra features useful for websites of any size, particularly sites that receive high traffic. It is commonly used in the LEMP (Linux Nginx MySQL/MariaDB PHP) stack; Nginx uses PHP FastCGI for serving dynamic HTTP content on a network. It is being used to serve millions of PHP requests for hundreds of websites […]

Share:
Continue Reading

Generate SSH Public and Private Keys on Linux

SSH allows for both password based authentication, as well as public key authentication. Public key authentication is generally regarded as being more secure, as it isn’t as prone to brute force login attempts (if you disable password based authentication). The private key can also have a passphrase associated with it, which makes public key authentication […]

Share:
Continue Reading