Hackathon - Linux

Mastering Linux

View the Project on GitHub ricmmartins/fasthack-linux

Challenge 01 - Create a Linux Virtual Machine - Coach’s Guide

Home - Next Solution >

Notes & Guidance

To accomplish the creation of the Ubuntu 20.04 Linux Virtual Machine, you can follow the below steps using the Azure CLI from cloud shell:

az group create --name rg-linux-fundamentals --location eastus
az vm create \
  --resource-group rg-linux-fundamentals \
  --name myVM \
  --image Canonical:0001-com-ubuntu-server-focal:20_04-lts:latest \
  --admin-username student \
  --generate-ssh-keys
ssh student@[public-ip]