Problem When I ran just command on Ubuntu 20.04 LTS, it throws an error like below. But it was fine when I used .
Linux
How to install LAMP with PHP 5.6 on Ubuntu 16.04
Installs LAMP with PHP 5.6 on Ubuntu 16.04
Ubuntu: Add a User To Group www-data
This tutorial illustrates, how to add a user to the apache group called www-data on Ubuntu Linux. Add a new user to the www-data group Below command will create a new user and automatically add to the www-data group sudo useradd -g www-data tutsuser sudo sudo passwd tutsuser Verify the setting id tutsuser Add an…Continue Reading
How to Install Let’s Encrypt Certificate on cPanel?

Today is the era of privacy and security! Back in 2018, the browser giant Google Chrome started marking non-HTTPS pages that collect data such as registration, login, and contact us forms, etc. as “not secure” and when the visitor stats typing, the text will become red as a warning to visitors that the connection between…Continue Reading
Install Apache2, MariaDB, And PHP 7.1 (LAMP) On Ubuntu 16.04 LTS Server
In this article we are showing how to create a development environment for your PHP + MySQL projects. LAMP is acronym for Linux, Apache2, MariaDB, PHP. I would suggest LAMP stack for the development of powerful CMS such as WordPress, Drupal, Magento. So this tutorial make sure you have the development environment ready for your…Continue Reading
Shell command to tar directory excluding certain files/folders

It looks very easy question that shell command to tar directory excluding certain files/folders in Linux operating system like Cent OS, Ubuntu. At one point I had to take backup of my entire website, then I realized that none of the vast amount of tutorials over the internet was not working for me. Finally I…Continue Reading
How do I Compress a Whole Folder Linux?
How can I compress a whole directory under a Linux command prompt? You will be using tar command to compress a folder in linux: Where, -z : Compress archive using gzip program -c: Create archive -v: Verbose i.e display progress while creating archive -f: Archive File name For example, you have a direcotrey called mysite.com in…Continue Reading
How To Use Find and Locate to Search for Files on a Linux
Linux distributions are well known for their command line interface. But it makes difficult to find a file in one folder. Unlike Windows/Mac, most of the system admins prefer the nongraphical interface. So how to find a file in Linux distributions?. Let’s use some commands as we use locate command in Linux for finding files…Continue Reading
How to send a mail from a Linux shell script
Often times we need to send an email from Linux shell script after completing a certain task. Here is the shell script to send email automatically. <<< passes the word on the right the standard input of the command on the left.
How To Install and Use Memcached on Ubuntu 14.04

When your website grows to million of page views per month, one of the things be in stress is your database. So you want to help your database from stress using some backend caching mechanism. One way of dealing with this is leveraging a memory object caching system, like Memcached. Memcache is a caching mechanism…Continue Reading
How to Install Ubuntu in VMware Player -Windows
How to install Ubuntu 16.04 in VMPlayer in Windows operating system You may be like running an extra operating system apart from your original OS windows. Here comes a handy tool called VMware workstation player, it’s a virtual environment that you can install any OS on your PC. It works inside your Windows Operating system….Continue Reading
How To Install and Configure Varnish with Apache on Ubuntu 16.04

Varnish is an HTTP accelerator and it’s a tool for speeding up a server. It used as a reverse proxy for your server, as Varnish as front and Apache as back. Setting Up Note : You should have sudo access to the server in order to install Varnish. First step, executes the below commands this…Continue Reading
Display Date And Time In Linux

How to get the current date and time in Linux OS. To display the current date and time by using command line, you can use below code Open a terminal and type the following command: date It outputs like GST 2017 11:20:30 Feb Even you can use format to print the date and time in…Continue Reading