<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: anthony AMAJOH</title>
    <description>The latest articles on DEV Community by anthony AMAJOH (@free2soar007).</description>
    <link>https://dev.to/free2soar007</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1594597%2F5faad392-4a99-4e4d-98b1-b7ce88db0b84.png</url>
      <title>DEV Community: anthony AMAJOH</title>
      <link>https://dev.to/free2soar007</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/free2soar007"/>
    <language>en</language>
    <item>
      <title>Technical blog on Git and GitHub; how to set up git, creating a repository, making commits, pushing, pulling etc</title>
      <dc:creator>anthony AMAJOH</dc:creator>
      <pubDate>Sun, 04 Aug 2024 15:05:14 +0000</pubDate>
      <link>https://dev.to/free2soar007/technical-blog-on-git-and-github-how-to-set-up-git-creating-a-repository-making-commits-pushing-pulling-etc-1e5h</link>
      <guid>https://dev.to/free2soar007/technical-blog-on-git-and-github-how-to-set-up-git-creating-a-repository-making-commits-pushing-pulling-etc-1e5h</guid>
      <description>&lt;p&gt;GIT&lt;br&gt;
Git is a DevOps tool used for source code management. It is a distributed version control system. It tracks changes in source code during software development. Git allows for multiple developers to collaborate on a project.&lt;/p&gt;

&lt;p&gt;GITHUB&lt;br&gt;
Github is a web-based platform for version control using Git. It provides hosting for software development and version control. It facilitates collaboration among developers.&lt;/p&gt;

&lt;p&gt;DIFFERENCE BETWEEN GIT AND GITHUB&lt;br&gt;
Git is a version control system that lets you manage and keep track of your source code history. GitHub is a cloud-based hosting service that lets you manage Git repositories.&lt;/p&gt;

&lt;p&gt;GITHUB FEATURES&lt;br&gt;
Some features of Github include but not limited to the following&lt;br&gt;
a. Repository hosting&lt;br&gt;
b. Pull requests for code reviews&lt;br&gt;
c. Issues for bug tracking and feature requests. You can state issues and track actions&lt;br&gt;
d. Github actions for CI/CD&lt;/p&gt;

&lt;p&gt;KEY CONCEPTS IN GIT.&lt;/p&gt;

&lt;p&gt;i. Repository (Repo)&lt;br&gt;
A Repository is a database containing all project files and their revision history.&lt;/p&gt;

&lt;p&gt;ii. Commit&lt;br&gt;
Commit refers to changes made to the repository. Each commit has a unique ID (hash #) with a detailed message explaining what the commit is about&lt;/p&gt;

&lt;p&gt;iii. Branch&lt;br&gt;
A parallel version of the repository. You can have more than one branch. They help you create another environment when you want to add a new feature or fix a bug. It allows for separate development paths&lt;/p&gt;

&lt;p&gt;iv. Merge&lt;br&gt;
Combining changes from different branches.&lt;/p&gt;

&lt;p&gt;v. Clone&lt;br&gt;
Copying a repository to your local environment to work on.&lt;/p&gt;

&lt;p&gt;SETTING UP GIT&lt;br&gt;
&lt;a href="https://git-scm.com/downloads" rel="noopener noreferrer"&gt;https://git-scm.com/downloads&lt;/a&gt;&lt;br&gt;
&lt;a href="https://github.com/signup" rel="noopener noreferrer"&gt;https://github.com/signup&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;1a. Download and install Git from the link below&lt;br&gt;
&lt;a href="https://git-scm.com/downloads" rel="noopener noreferrer"&gt;https://git-scm.com/downloads&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;b. Sign up on Github using the below link&lt;br&gt;
&lt;a href="https://github.com/signup" rel="noopener noreferrer"&gt;https://github.com/signup&lt;/a&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Configuration
After downloading and installing Git. Go to the windows search bar at the bottom left of your system and type in "gitbash". The gitbash terminal will pop up&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F03wf7ng8or6oijlafooh.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F03wf7ng8or6oijlafooh.PNG" alt="Image description" width="617" height="390"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The first thing we do is to configure the git&lt;/p&gt;

&lt;p&gt;a. &lt;strong&gt;Set your username.&lt;/strong&gt;&lt;br&gt;
To set your username, enter the following commands in the gitbash terminal. Then press enter&lt;br&gt;
&lt;em&gt;git config --global user.name "your github username&lt;/em&gt;" and press enter&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiyg620l16ez4d4nkwdhs.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiyg620l16ez4d4nkwdhs.PNG" alt="Image description" width="612" height="395"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;b. &lt;strong&gt;Set your email&lt;/strong&gt;&lt;br&gt;
To set your email, enter the commands below&lt;br&gt;
git config --global user.email "Your registered email with github" and press enter&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fazoiauck8m2q78k8zg0b.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fazoiauck8m2q78k8zg0b.PNG" alt="Image description" width="598" height="396"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;BASIC GIT COMMANDS&lt;br&gt;
i. Checking Status&lt;br&gt;
&lt;em&gt;git status&lt;/em&gt;&lt;br&gt;
This command shows the status of changes made. It shows the added files, and the ones that are yet to be added.&lt;/p&gt;

&lt;p&gt;ii. Adding Changes&lt;br&gt;
a. &lt;em&gt;git add (file)&lt;/em&gt;&lt;br&gt;
To stage changes for a particlar file&lt;br&gt;
b. &lt;em&gt;git add .&lt;/em&gt;&lt;br&gt;
To add all the files that you have made changes to. To stage all changes.&lt;/p&gt;

&lt;p&gt;iii. Committing Changes&lt;br&gt;
&lt;em&gt;git commit -m "commit message"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;iv. Viewing History&lt;br&gt;
&lt;em&gt;git log&lt;/em&gt;&lt;br&gt;
View commit history&lt;/p&gt;

&lt;p&gt;v. Branching and Merging&lt;br&gt;
a. Create a new branch&lt;br&gt;
&lt;em&gt;git branch (branch-name)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;b. Switching Branches&lt;br&gt;
&lt;em&gt;git checkout (branch-name)&lt;/em&gt;&lt;br&gt;
Switch to a specified branch&lt;/p&gt;

&lt;p&gt;c. Merging Branches&lt;br&gt;
&lt;em&gt;git merge (branch-name)&lt;/em&gt;&lt;br&gt;
Merge changes from the specified from the specified branch into the current branch&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;WORKING WITH REMOTE REPOSITORIES&lt;/strong&gt;&lt;br&gt;
Remote repositories are versions of your project that are hosted on the Internet or network somewhere.&lt;/p&gt;

&lt;p&gt;Git commands when working with a remote Repository.&lt;/p&gt;

&lt;p&gt;i. Adding a Remote Repository&lt;br&gt;
&lt;em&gt;git remote add origin (repository URL)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;ii. Pushing Changes&lt;br&gt;
&lt;em&gt;git push origin (branch-name)&lt;/em&gt;&lt;br&gt;
Push changes to the remote repository&lt;/p&gt;

&lt;p&gt;iii. Pulling Changes&lt;br&gt;
&lt;em&gt;git pull origin (branch-name)&lt;/em&gt;&lt;br&gt;
Fetch and merge changes from the remote repository&lt;/p&gt;

&lt;p&gt;iv. Fetching Changes&lt;br&gt;
&lt;em&gt;git fetch origin&lt;/em&gt;&lt;br&gt;
Fetch changes from the remote repository without merging&lt;/p&gt;

&lt;p&gt;CREATING A REPOSITORY, MAKING A COMMIT, PUSHING, PULLING ETC.&lt;/p&gt;

&lt;p&gt;Since the user.name and email have been configured already on Git. To create a folder; we enter the command below in gitbash terminal&lt;br&gt;
&lt;em&gt;mkdir GitLaab&lt;/em&gt;&lt;br&gt;
This will create project/folder.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy52mkvcdt7ce4ijdldt1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy52mkvcdt7ce4ijdldt1.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, you run the command below&lt;br&gt;
&lt;em&gt;cd GitLaab&lt;/em&gt; &lt;br&gt;
To change directory. This will take you to the directory you created.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb1b8yjs9sq5i34oniyhd.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fb1b8yjs9sq5i34oniyhd.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;To initialize a new Repository; you enter the following command&lt;br&gt;
&lt;em&gt;git init&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd6hiskh7iukxjr35bbaq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fd6hiskh7iukxjr35bbaq.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The next command will open the project in Visual Studio Code.&lt;br&gt;
&lt;em&gt;code .&lt;/em&gt;&lt;br&gt;
This command opens the created folder in Visual Studio Code&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh9g2fjktgpzemfll5m7l.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fh9g2fjktgpzemfll5m7l.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;For the project, we will try to push a simple index.html file to github.&lt;/p&gt;

&lt;p&gt;On Visual Studio Code click on the project folder to open the folder. Then, you open a new file by clicking on the + New file icon beside the project folder and name the newly created file. Since we are working with an html file, we will name it index.html.&lt;/p&gt;

&lt;p&gt;The next step is to import and paste the html file in the Newly created file and save.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpaspkz9ikp5yj7f9wn2.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqpaspkz9ikp5yj7f9wn2.PNG" alt="Image description" width="800" height="248"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, we open Terminal in VSC by clicking on Terminal and selecting New Terminal.&lt;/p&gt;

&lt;p&gt;To view the status, you enter the below command&lt;br&gt;
&lt;em&gt;git status&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flrxlyk2xlazfrbkfc0sn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flrxlyk2xlazfrbkfc0sn.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next, you run the following command to add all the files you have&lt;br&gt;
git add .&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcakdlo5vmc0cbsj0apkp.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcakdlo5vmc0cbsj0apkp.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You can run (git status) again to what information you have&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flvi4svm3yuf4v1ah575j.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flvi4svm3yuf4v1ah575j.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;br&gt;
You can observe that on running the command; the index file changed color from red to green. This shows that the file has been added.&lt;/p&gt;

&lt;p&gt;The next stage is to commit by running the next command.&lt;br&gt;
git commit -m "Adding index.html"&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjtypdo3pb6wr38tosyx2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjtypdo3pb6wr38tosyx2.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The next thing is to go to Github.com and create a Repository; then, connect the repository to VSC.&lt;/p&gt;

&lt;p&gt;To do this, click on the drop down beside the + at the top right of the page; select New Repository.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe5pb51nzecwpu4vymssn.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fe5pb51nzecwpu4vymssn.png" alt="Image description" width="800" height="359"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Give the Repository a name. The Repository can either be Public or Private.&lt;/p&gt;

&lt;p&gt;Tick add a README file.This is for documentation&lt;/p&gt;

&lt;p&gt;Click 'create Repository'&lt;/p&gt;

&lt;p&gt;Go to 'Code'. It is green in color&lt;/p&gt;

&lt;p&gt;Copy the Link&lt;/p&gt;

&lt;p&gt;Add the copied repository URL to the local machine by entering the following command.&lt;br&gt;
&lt;em&gt;git remote add origin (Repository URL)&lt;/em&gt;&lt;br&gt;
This will make the connection between the local machine and Github.&lt;/p&gt;

&lt;p&gt;After connecting the local machine and Github, next thing is to push the file to Github with the below command&lt;br&gt;
&lt;em&gt;git push origin master&lt;/em&gt;&lt;br&gt;
This will redirect you to signin to your Github account&lt;/p&gt;

&lt;p&gt;You can run status command to view the status of the changes.&lt;br&gt;
git status&lt;/p&gt;

&lt;p&gt;Go to Github, click on master branch. This will reveal the index.html file that was successfully pushed to Github.&lt;/p&gt;

&lt;p&gt;In the same manner, you can add other files to the repository.&lt;/p&gt;

&lt;p&gt;Go to VSC, click on the folder and add a New file. Add a README.md file&lt;/p&gt;

&lt;p&gt;Enter a text in the README.md file that was created and save.&lt;/p&gt;

&lt;p&gt;Run (git status) to see the information you currently have.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;git add&lt;/em&gt;. To add the file&lt;/p&gt;

&lt;p&gt;&lt;em&gt;git commit -m "Adding README.md"&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;git push origin master&lt;/em&gt;&lt;br&gt;
To push the file to Github&lt;/p&gt;

&lt;p&gt;Login to your Github account&lt;br&gt;
Open the README.md file to view it, and also edit if necessary&lt;/p&gt;

&lt;p&gt;To edit, click on the edit pen&lt;br&gt;
a. Edit&lt;br&gt;
b. Commit message&lt;br&gt;
c. Save&lt;/p&gt;

&lt;p&gt;git pull origin master&lt;br&gt;
This will pull the changes made from Github to the local machine&lt;/p&gt;

</description>
    </item>
    <item>
      <title>BLOG ON HOW TO HOST STATIC WEBSITE ON AZURE BLOB STORAGE</title>
      <dc:creator>anthony AMAJOH</dc:creator>
      <pubDate>Fri, 05 Jul 2024 17:30:52 +0000</pubDate>
      <link>https://dev.to/free2soar007/blog-on-how-to-host-static-website-on-azure-blob-storage-4jo0</link>
      <guid>https://dev.to/free2soar007/blog-on-how-to-host-static-website-on-azure-blob-storage-4jo0</guid>
      <description>&lt;p&gt;You will need to download Visual Studio Code. It is a code editor.&lt;br&gt;
It is static because it is fixed i.e.one cannot interact with it. &lt;/p&gt;

&lt;p&gt;STEPS&lt;br&gt;
a. Download a sample website and save.&lt;br&gt;
b. Open Visual Studio Code&lt;/p&gt;

&lt;p&gt;i. To open Visual Studio Code; search for Visual Studio Code in the search bar at the bottom left, beside the windows icon&lt;br&gt;
ii. Click on file at the top left. See below screenshot&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm0144iaw6p4z8hxjqai1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm0144iaw6p4z8hxjqai1.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;iii. Select open folder from the dropdown to open the folder.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7x4zqek20p1gkcabbqfc.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7x4zqek20p1gkcabbqfc.PNG" alt="Image description" width="651" height="498"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;iv. Go to the download folder to select the folder you want to work on.&lt;br&gt;
Click on it and select Folder&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4anjxquivs6v28b5p6b.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fy4anjxquivs6v28b5p6b.PNG" alt="Image description" width="772" height="473"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flu6id9ka3hmuc3zi1hed.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Flu6id9ka3hmuc3zi1hed.PNG" alt="Image description" width="777" height="480"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;v. Click on index.html on visualstudio code to open it&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhqq54zycowxqr4skdd5q.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fhqq54zycowxqr4skdd5q.PNG" alt="Image description" width="800" height="597"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;vi. Then, you edit the portions written in white. They are between the tags. Extra care has to be taken so as not to delete or tamper with the codes.&lt;br&gt;
The portions written in white are the things rendering on the page i.e. the things we can see on the page when it is opened on the browser.&lt;br&gt;
After editing, you can now save.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Go to Azure Portal
i. Login to Azure
ii. Create a Storage Account. Search for Storage Accounts in search bar, and select it&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc57wr0nvhmog6kbxf67p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fc57wr0nvhmog6kbxf67p.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;iii. Click on +Create on the top left of the page&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjjrlua84o4tnyg5jy6tx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjjrlua84o4tnyg5jy6tx.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;iv. Edit the Basic page, leave the others at default. Then, review and create.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpvf0l90kwsbffikgxvgo.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fpvf0l90kwsbffikgxvgo.PNG" alt="Image description" width="800" height="738"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After successfully creating the storage account, click on go to Resource.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4wnhldvn6p35h5xq7nai.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4wnhldvn6p35h5xq7nai.PNG" alt="Image description" width="781" height="503"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;v. Locate the static website.&lt;br&gt;
The static website can be located by either Clicking on 'capabilities' or by clicking 'Data Management' on left pane as shown below&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdisls5ytpkndpdsonm42.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdisls5ytpkndpdsonm42.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Data Management&lt;br&gt;
Click on Data Management, then, click on 'Static Website'&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fspoo63pkt922j36urv2n.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fspoo63pkt922j36urv2n.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;vi. After clicking static website; you enable it. Then, you input the index document name and the error document path. Then, you click save.&lt;br&gt;
The index majorly is the root folder; from the index, you can link to other folders.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fujgjogmonp3c9hcjbkj0.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fujgjogmonp3c9hcjbkj0.PNG" alt="Image description" width="800" height="376"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;vii. After saving, an Azure Storage account will be created, as well as the 'Primary Endpoint link', and 'Secondary Endpoint link'. These links when opened on the browser will take you to your website.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiorwxz6h46lbkli4vsjo.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fiorwxz6h46lbkli4vsjo.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;viii. Go to Data Storage&lt;br&gt;
Click on Containers. This will open the recently created storage account.&lt;br&gt;
Click on the Azure storage account that was created&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fteq7y2adlubxdi7w4xqt.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fteq7y2adlubxdi7w4xqt.PNG" alt="Image description" width="358" height="304"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvxdo6zjin9hx19awrh6u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvxdo6zjin9hx19awrh6u.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;ix. Click on the Azure storage account, click 'upload' select the file to be uploaded from the folder. Drag and drop on the Azure storage account. Then, click on upload.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8hg4yu5zdu4hsmjink3l.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8hg4yu5zdu4hsmjink3l.PNG" alt="Image description" width="775" height="445"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6cz9hswjmj5s2ra4kqkq.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6cz9hswjmj5s2ra4kqkq.PNG" alt="Image description" width="800" height="284"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;x. To access the website, go to the overview page. &lt;br&gt;
Select Data Management, Click on Static website, and copy the 'Primary Endpoint', and paste it in your browser.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://anthonywebsite.z19.web.core.windows.net/" rel="noopener noreferrer"&gt;https://anthonywebsite.z19.web.core.windows.net/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn85zqi325axl5dm5ccdt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn85zqi325axl5dm5ccdt.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>HOW TO CREAT AND CONNECT TO A LINUS VM USING A PUBLIC KEY.</title>
      <dc:creator>anthony AMAJOH</dc:creator>
      <pubDate>Fri, 21 Jun 2024 06:46:13 +0000</pubDate>
      <link>https://dev.to/free2soar007/how-to-creat-and-connect-to-a-linus-vm-using-a-public-key-4ha2</link>
      <guid>https://dev.to/free2soar007/how-to-creat-and-connect-to-a-linus-vm-using-a-public-key-4ha2</guid>
      <description>&lt;p&gt;Here are the steps to creating and connecting to Linus VM using a public key.&lt;/p&gt;

&lt;p&gt;_Sign in to Azure&lt;br&gt;
Create a Resource Group&lt;br&gt;
Create SSH Public Private Key Pair&lt;br&gt;
Create Virtual Machine&lt;br&gt;
Connect to Virtual Machine.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;SIGN IN TO AZURE&lt;/strong&gt;&lt;br&gt;
To sign to Azure. Type in "portal.azure" on the web browser to open the Azure portal. Enter your email and password on the login page, and sign in.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqyl5ivh5w05n2bb6grn7.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqyl5ivh5w05n2bb6grn7.PNG" alt="Image description" width="800" height="565"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CREATE A RESOURCE GROUP OR USE AN EXISTING RESOURCE GROUP&lt;/strong&gt;&lt;br&gt;
To create a Resource: on the search bar, type in virtual machine. Select virtual machine from the dropdown. &lt;/p&gt;

&lt;p&gt;Then click on 'Create' and select Azure Virtual Machine. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2For41k4tni7l3c9nqe74o.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2For41k4tni7l3c9nqe74o.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffnuabc0nytxz1cz2ywqu.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ffnuabc0nytxz1cz2ywqu.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;From the "Create a Virtual Machine" page, create a new Resource Group or select from an existing resource group.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmnftldikg8da4tfgwnmv.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmnftldikg8da4tfgwnmv.PNG" alt="Image description" width="800" height="383"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CONFIGURE BASICS&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Choose a VM name&lt;br&gt;
Region&lt;br&gt;
Availability Option&lt;br&gt;
Security Type&lt;/em&gt;&lt;br&gt;
&lt;em&gt;Image&lt;/em&gt;. This refers to the OS. In this case, we are working with Linus OS&lt;br&gt;
Size&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvuntmbpvi2862gsle73g.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fvuntmbpvi2862gsle73g.PNG" alt="Image description" width="800" height="544"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CREATE SSH PUBLIC KEY&lt;/strong&gt;&lt;br&gt;
"Administrator Account"&lt;br&gt;
For &lt;em&gt;Authentication type&lt;/em&gt; under "Administrator Account"; select SSH Public Key.&lt;br&gt;
Azure automatically generates an SSH Key Pair and allows you to store it for future use. It is a fast, simple, and secure way to connect to your VM.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Username&lt;/em&gt;. A default username is created, this can also be changed.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;SSH Public Key Source&lt;/em&gt;. A new Key Pair is generated by default. If you already have an existing key pair; select any other suitable option from the dropdown bar.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;SSH Key Type&lt;/em&gt;. Select RSA SSH format.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Key Pair Name&lt;/em&gt;. Automatically named. It is named after the VM with _key (underscore key) added at the end as a "suffix".&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Inbound Port Rules&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Public Inbound Ports&lt;/em&gt;. Allow Selected Ports is selected.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Select Inbound Ports&lt;/em&gt;. HTTP(80), and SSH(22)&lt;/p&gt;

&lt;p&gt;See attached screenshot&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6493sto2o60sp1up4np7.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F6493sto2o60sp1up4np7.PNG" alt="Image description" width="800" height="645"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Since we are creating a simple Linus VM; the settings for Disks, Networking, Management, Advance, and Tags will remain at default.&lt;br&gt;
We can go ahead and click "Review and Create". In the future, if and when the need arises; the default settings can be changed in the VM's settings.&lt;/p&gt;

&lt;p&gt;After clicking 'Review and Create'; the validation page will come up. See below screenshot&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fknqps0kf8mlnkrvtpsp2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fknqps0kf8mlnkrvtpsp2.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We can then proceed to create the VM by clicking create at the bottom of the page. &lt;/p&gt;

&lt;p&gt;A prompt will pop up requesting a download of the Private Key as shown in the screenshot below. Click download and wait while it downloads and deploys. This might take a while, it is downloaded automatically to the download folder&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff8taz1dlk99v943do362.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ff8taz1dlk99v943do362.PNG" alt="Image description" width="800" height="412"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After deployment is completed, click on Go To Resource.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuqosu7y0jfo64cw5x99w.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuqosu7y0jfo64cw5x99w.png" alt="Image description" width="800" height="438"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After clicking on 'go to resource', the overview page of the Linux VM will open.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;CONNECT TO THE VM&lt;/strong&gt;&lt;br&gt;
To connect to the VM, open cmd or powershell. Then, type in ssh -i "the path of the downloaded key pair,the generated key pair name.pem" azureusername@ip address and press enter. The screenshot below shows connection to the VM was successful.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F31v6w6ie1za26fxmfcoh.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F31v6w6ie1za26fxmfcoh.PNG" alt="Image description" width="562" height="288"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After successfully connecting to the VM, you can then, go ahead and install web server and connect to nginx by running sudo commands.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8nrf1kgzy87ny7b1it38.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F8nrf1kgzy87ny7b1it38.PNG" alt="Image description" width="800" height="237"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Since this VM is for test purposes; it is important not to leaves the resources running as the idle resources will be incurring costs. It is advisable that we delete the resources.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>CREATE A WINDOWS 11 VM ON AZURE.</title>
      <dc:creator>anthony AMAJOH</dc:creator>
      <pubDate>Fri, 14 Jun 2024 10:58:08 +0000</pubDate>
      <link>https://dev.to/free2soar007/create-a-windows-11-vm-on-azure-g4m</link>
      <guid>https://dev.to/free2soar007/create-a-windows-11-vm-on-azure-g4m</guid>
      <description>&lt;p&gt;Creating a blog post with step-by-step details and screenshots on deploying and connecting to a virtual machine (VM) involves several stages. Outlined below are the various steps involved in deploying a VM.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;_STEP 1. Sign to the Azure Portal. _&lt;/strong&gt;&lt;br&gt;
Access the Azure portal by typing in portal.azure.com in the web browser and sign in with your registered email and password.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fv8bogr4qj2t0jb13xl54.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fv8bogr4qj2t0jb13xl54.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;STEP 2. Create a Resource.&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
There are three options to choose from in creating a VM&lt;br&gt;
i. Click on Create a Resource and select Virtual Machine.&lt;br&gt;
ii. Search for VM in the search bar&lt;br&gt;
iii. Click on Virtual Machine on the dashboard.&lt;/p&gt;

&lt;p&gt;STEP 3. Configure Basics.&lt;br&gt;
a. Select Subscription, create a resource group, and VM&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fimda4cxoos82hzgqmt2k.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fimda4cxoos82hzgqmt2k.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fudsrph352c1taf2wav7t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fudsrph352c1taf2wav7t.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fowdxjukm9ej1ns4qy32f.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fowdxjukm9ej1ns4qy32f.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3a9ewhv2ucuzdm23zy1a.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3a9ewhv2ucuzdm23zy1a.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;b. choose a Region and Availability options.&lt;br&gt;
Regions are geographical locations where the VM will be deployed. Regions are selected based on the proximity to the users.&lt;br&gt;
Availability option refers to making provisions for redundancy in case of failures.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr41bww9v50c1qg6h9bv0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fr41bww9v50c1qg6h9bv0.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;c. Select the OS (Windows or Linus)&lt;br&gt;
Go to image and select Windows 11&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fut4pbk93pzgmjiwx68u9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fut4pbk93pzgmjiwx68u9.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;STEP 4. Choose a VM size&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
Pick a VM size based on the required CPU, Memory, and Storage.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;STEP 5. Configure Setting.&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
a. Set up Administrator Account.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnlt7vnoa0a9oouf0maxr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnlt7vnoa0a9oouf0maxr.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You confirm and click next (Disks)&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3g29hxcjwmn2kcm29wyv.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3g29hxcjwmn2kcm29wyv.png" alt="Image description" width="800" height="433"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Because we are creating a simple VM, we leave all the options at default and click on next (Networking)&lt;/p&gt;

&lt;p&gt;b. Configure Networking, Management, and Monitoring Options.&lt;/p&gt;

&lt;p&gt;For Networking, Management and Monitoring; the Settings will be on default simply because what we are creating is a simple VM.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3r2mnpfvqc3u4am4hiec.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F3r2mnpfvqc3u4am4hiec.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next is Advanced&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqv4dblreumom0vxrx95p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fqv4dblreumom0vxrx95p.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Next is Tags&lt;br&gt;
The importance of Tags is that it helps organize your resources so that you can easily trace and organize them.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fns6iyzwe3i3swu40lq0u.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fns6iyzwe3i3swu40lq0u.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;STEP 6. Review and create.&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
Review the configuration and create the VM.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjaxltibvywbbwm292tp9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjaxltibvywbbwm292tp9.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The screenshot above is showing Validation passed. Validation passed means you can go ahead and create your VM. If it says otherwise or an error message, it simply means you have to go back and correct the error.&lt;/p&gt;

&lt;p&gt;STEP 7. Create&lt;br&gt;
To create the VM, you click on create at the bottom of the page.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs6d1fls7mujq7dev64ah.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fs6d1fls7mujq7dev64ah.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After clicking create, it will bring up the page below showing that deployment is in progress. This might take a while. Usually, it takes a few minutes. It will show a list of other resources created alongside the VM&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9honcy4rza7hxuc5bfvy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F9honcy4rza7hxuc5bfvy.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After deployment has been completed as shown below, you click on 'Go to Resource'&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ncbw15turi9pmm7yj4q.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4ncbw15turi9pmm7yj4q.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp358eok6tzzho7l4bxpk.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fp358eok6tzzho7l4bxpk.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The next page that comes up shows an overview of the VM created. The name of the VM created, the properties, the operating system, the size, the location, the public IP address etc&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;STEP 8. Connect&lt;/em&gt;&lt;/strong&gt;&lt;br&gt;
To connect to the VM created, you click on connect as shown in the image below.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn6gq0wa4mb97fw2p8sfe.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fn6gq0wa4mb97fw2p8sfe.png" alt="Image description" width="800" height="437"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After connecting, you then download and open the RDP file.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm2qeipmjonvhhubb3553.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fm2qeipmjonvhhubb3553.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwze5kjk6f0e3gojsodyq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fwze5kjk6f0e3gojsodyq.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After downloading and opening the RDP, you will get a prompt to login with your password. You input your password and then, you connect.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa526xfhrlz43ag4mgxcb.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fa526xfhrlz43ag4mgxcb.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgcywucvhycn7zvdco3i1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgcywucvhycn7zvdco3i1.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1cymfc17p7v8g1muxyp9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F1cymfc17p7v8g1muxyp9.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faok5qlr16aeex5y2z0g9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Faok5qlr16aeex5y2z0g9.png" alt="Image description" width="800" height="450"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
