Posts

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Google Cloud Platform (GCP)

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Google Cloud Platform (GCP) In this guide, we will walk you through the process of creating an Ubuntu 18.04 virtual machine on Google Cloud Platform (GCP). Here are the steps you need to follow: Step 1: Log in to the Google Cloud Console Open your browser and log in to the Google Cloud Console using your Google account credentials. Step 2: Create a new project Click on the project drop-down menu and select "Create a project." Provide a name for your project and click "Create." Step 3: Launch the Compute Engine Click on the "Navigation menu" and select "Compute Engine." From there, click on the "Create an instance" button to start the process of creating a new virtual machine. Step 4: Choose an image In the next screen, you need to choose an image for your virtual machine. Search for "Ubuntu 18.04 LTS" and select the appropriate image. Step 5: Configure instance de...

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Amazon Web Services (AWS)

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Amazon Web Services (AWS) In this guide, we will walk you through the process of creating an Ubuntu 18.04 virtual machine on Amazon Web Services (AWS). Here are the steps you need to follow: Step 1: Log in to the AWS Management Console Open your browser and log in to the AWS Management Console using your AWS account credentials. Step 2: Launch an EC2 instance Click on the "Services" drop-down menu and select "EC2" to launch the EC2 management console. From there, click on the "Launch Instance" button to start the process of creating a new EC2 instance. Step 3: Choose an Amazon Machine Image (AMI) In the next screen, you need to choose the Amazon Machine Image (AMI) that you want to use for your virtual machine. Search for "Ubuntu Server 18.04 LTS" and select the appropriate AMI. Step 4: Choose an instance type Next, choose an instance type based on your computing requirements. AWS pr...

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Microsoft Azure

Step-by-Step Guide to Create an Ubuntu 18.04 Virtual Machine on Microsoft Azure In this guide, we will walk you through the process of creating an Ubuntu 18.04 virtual machine on Microsoft Azure. Here are the steps you need to follow: Step 1: Log in to Azure portal Open your browser and log in to the Azure portal using your Microsoft account credentials. Step 2: Create a new virtual machine Click on the "Create a resource" button and select "Ubuntu Server 18.04 LTS" from the list of virtual machine images. Click on the "Create" button to start the creation process. Step 3: Configure virtual machine settings In the next screen, you need to provide the following information to configure your virtual machine. Subscription : Choose the Azure subscription you want to use for this virtual machine. Resource group : Create a new resource group or select an existing one to use for this virtual machine. Virtual machine name : Enter a unique name for your virtual mac...

How to Deploy Virtual Machines on Microsoft Azure?

How to Deploy Virtual Machines on Microsoft Azure? Microsoft Azure is a popular cloud platform that provides a wide range of services and solutions to businesses, developers, and organizations. One of the core services offered by Azure is virtual machines (VMs). A virtual machine is a software simulation of a physical computer that runs an operating system and applications as if it were a physical computer. In this blog post, we will discuss the process of deploying a virtual machine on Azure and provide step-by-step instructions for doing so. Step 1: Sign up for a Microsoft Azure account The first step in deploying a virtual machine on Azure is to sign up for an Azure account. If you already have a Microsoft account, you can use that to sign up for Azure. If not, you can create a new Microsoft account by visiting the Microsoft Azure website and clicking the "Free account" button. Step 2: Create a new virtual machine Once you have signed up for an Azure account, you can start...

How to install Jenkins on Amazon EC2 Instance (Ubuntu - 18.04)?

Installing Jenkins on an Amazon EC2 Instance (Ubuntu 18.04) Jenkins is a popular open-source automation server that helps developers automate parts of the software development process. In this guide, we will show you how to install Jenkins on an Amazon EC2 instance running Ubuntu 18.04. Before you start, make sure you have an Amazon Web Services (AWS) account and an EC2 instance running Ubuntu 18.04. Step 1: Update the System To begin, log in to your EC2 instance and update the system to ensure all the packages are up to date: sudo apt-get update sudo apt-get upgrade Step 2: Install Java Jenkins requires Java to be installed on the system. To install Java, run the following commands: sudo apt-get install openjdk-8-jdk Step 3: Add the Jenkins Repository Add the Jenkins repository to your system's list of software sources: wget -q -O - https://pkg.jenkins.io/debian/jenkins.io.key | sudo apt-key add - sudo sh -c 'echo deb https://pkg.jenkins.io/debian binary/ > /etc/apt/sources...

How to analyze the file size between two different Docker Images?

In this blog, we are going to analyze and compare the file size between two Container images using Container Diff tool . What is container-diff? container-diff is a developed by Google to analyze and compare container images. We can use this tool to get the difference between multiple images or analyze the data on single image as well. It is not currently being officially supported  by Google but we can use it to get the data. Installation macOS curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-darwin-amd64 sudo install container-diff-darwin-amd64 /usr/local/bin/container-diff Linux curl -LO https://storage.googleapis.com/container-diff/latest/container-diff-linux-amd64 sudo install container-diff-linux-amd64 /usr/local/bin/container-diff Windows Download the  container-diff-windows-amd64.exe  file, rename it to container-diff.exe and add it to your path. To perform analysis on Single Image container-diff analyze <img> --type=history ...

How to install AWS System Manager (SSM) Agent on windows using PowerShell?

Image
Welcome to itscloudhub!! In the previous post, we were looked how to install AWS SSM Agent on Linux Distribution. In this blog post, we will discuss how to install AWS SSM Agent on Windows machine. https://www.itscloudhub.com/2022/03/how-to-install-aws-system-manager-ssm.html AWS Systems Manager Agent (SSM Agent) is preinstalled, by default, on the following Amazon Machine Images (AMIs): 1. Windows Server 2008-2012 R2 AMIs published in November 2016 or later 2. Windows Server 2016, 2019, and 2022 If your managed instance is a Windows Server 2008-2012 R2 instance created before November 2016, then EC2Config processes Systems Manager requests on your instance. We recommend that you upgrade your existing instances to use the latest version of EC2Config . By using the latest EC2Config installer, you install SSM Agent side-by-side with EC2Config. This side-by-side version of SSM Agent is compatible with your instances created from earlier Windows Server AMIs and allows you to use SSM fe...