How to Create a Snapshot in Google cloud Platform.

Snapshots incrementally back up data from your persistent disks. After created a snapshot to capture the current state of the disk we can use it to restore that data to a new disk.We can create snapshots from disks even while they are attached to running virtual machine (VM) instances.   Login to Google cloud platform portal. Click …

How to Install and Deploy python django application using Nginx and Postgres in Ubuntu

Prerequisites : 1- Postgres database 2- Nginx 3- Gunicorn Step 1: After installed Python 3.6 and upgraded the pip version with the following command. sudo -H pip3 install –upgrade pip   Step 2: Install and create a python environment with the name of env inside a workstation folder. cd /opt/workstation sudo -H pip install virtualenv python3.6 …

Install python 3.6 in Ubuntu

Introduction: In this blog we will learn how to download and install the python 3.6 in the linux based on ubuntu. We will install the virtual environment and how to create an virtual environment of python 3.6 and also learn how to upgrade the pip. Step 1: First update and upgrade the system. sudo apt get update sudo …

How to use find command utilities in the Linux Part-2

Introduction  In second part of this blog of find utilities we will learn how to perform multiple operations can be performed, So lets begin and start learning more about find command utility. Find with Name or Extension The name attribute defines the content of search. The find utility is going to the specified location for whatever string of characters has entered. Typically the …

How to use find command utilities in the Linux

Introduction In this blog we learn about find command and what are the uses for the same. Its a tool which is not limited to the files or folders. With the use of find command utility we can search a specific location and add option to control the behaviour of the search. Prerequisites: User will be accessible to the terminal. …