How to Create Disk on Google Cloud Platform

Persistent Disk is designed for high durability. It stores data redundantly to ensure data integrity. Persistent disks are durable network storage devices that your instances can access like physical disks in a desktop or a server. The data on each persistent disk is distributed across several physical disks.   Login to google cloud platform portal. Click on compute engine . Select Disk.     Provide …

How to Create Virtual Machine in Google Cloud

A Virtual Machine (VM) is a compute resource that uses software instead of a physical computer to run programs and deploy apps. It runs on an isolated partition of its host computer with its own resources of CPU power, memory, an operating system (e.g. Windows, Linux, macOS), and other resources.   Login to Google cloud …

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 …