Posts

Blender Installation in AWS Windows EC2

Blender Installation in AWS Windows EC2 Requirements: 1.       GPU based graphic card 2.       Windows EC2 instance with support for GPU card 3.       RDP tool to connect to windows ec2 4.       Blender 2.79 GPU card:             Blender is a high-end graphic design software with requires different graphic libraries. Open GL libraries are one of them and is needed to run the software. All these libraries will work with graphic cards only. So we need to connect one graphic card to our ec2 instances. Windows EC2 instance with GPU card. Step1: Login into AWS management console and select EC2 service. Step2: Click launch instance à select windows server 2019 base AMI à GPU Instances like p2.xlarge à Configure instance details if we go down, we can see option Elastic Graphics. Here selects the graphic card....

Git commands

Git Commands 1. How to open git in windows?      After successful installation of git and configuration of git environment open windows command prompt and execute below commands     git   if git is installed successfully then it will display list of commands that can used with git. 2. What is the git command to check the version of git.               git --version   git version 2.16.2.windows.1       This command will display the current version of git installed.In the above example it shows as            the version of git as 2.16.2. 3. what is the git command to configure global configuration like name and email id?             git config --global user.name "mahesh"       git config --global user.email "mahesh.k@abc.com"      The above commands configure git username a...

Git Introduction

            Git Introduction  1.  What is Git? Git can be defined as a standard software or tool to store data which can be simultaneously used by one or more users. Git is used to create repositories which contain data and all the modifications done to this data can be traced using Git.Generally Git is used by developers to store source code. Example: A developer develops a software application and stores it in a Git repository, later on another developer works on this same data and push  changes to this repository. Now both developers can easily check the modifications done to the data using git. Git traces the changes made to data in the form of commits . Procedure: Step1: user1 pushes data to the repository. Step2: user2 pulls the changes done by user1 to his local repository and then he makes changes to the data or code and pushes them to the repository. Step3: now user1 pulls the data and makes changes. Note...

How to build and deploy project from Bitbucket to AWS Code Deploy

Integration of Bitbucket with AWS CodeDeploy This document is to explain how to integrate Bitbucket with AWS CodeDeploy. As we are aware that Bitbucket is used to store the source code. Bitbucket has come up with new services like Bitbucket Pipeline and Deploy to AWS services. With the help of this two added services one can build the code and deploy the code to other cloud services like AWS, Azure and BlueOcean where they keep their production servers. Once the developer commits the code in Bitbucket the Pipeline service activates and creates a build. Once the build is successful we can deploy the build directly to AWS CodeDeploy. So that the changes done in the application will reflect on the go. This document explains on how to configure Bitbucket with AWS CodeDeploy. Procedure to configure Bitbucket with AWS CodeDeploy. Prerequisite:   1.  Bitbucket account 2.  AWS account 3.  Working source code. Procedure: Step 1: Login into Bi...