Reader small image

You're reading from  Learn Azure Administration - Second Edition

Product typeBook
Published inDec 2023
PublisherPackt
ISBN-139781837636112
Edition2nd Edition
Right arrow
Author (1)
Kamil Mrzygłód
Kamil Mrzygłód
author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód

Right arrow

Deploying a VM

In the previous chapters (Chapter 3, Understanding Azure Virtual Networks, and Chapter 4, Exploring Azure Load Balancer), we had a chance to deploy a couple of VMs using default parameters. We also made some connections and even ran some commands on them. In this chapter, we’ll extend our knowledge and see what additional options there are when deploying VMs.

Deploying a single VM

When you want to deploy a single VM, you can use one of the commands available in the Azure CLI:

az vm create -n <vm-name> -g <resource-group-name> --image <os-image>

This will create a single machine with the selected operating system. If you want to learn what possible choices for the system are, you need to use another command:

az vm image list --all -o table

This command will display a big list of all images available, including additional information (such as publisher, offer, or SKU). The list itself may be a little too long to quickly find useful...

lock icon
The rest of the page is locked
Previous PageNext Page
You have been reading a chapter from
Learn Azure Administration - Second Edition
Published in: Dec 2023Publisher: PacktISBN-13: 9781837636112

Author (1)

author image
Kamil Mrzygłód

Kamil Mrzygłód is a technical lead and technology advisor, working with multiple companies on designing and implementing Azure-based systems and platforms. He's a former Microsoft Azure Microsoft Most Valuable Professional (MVP) and certified trainer, who shares his knowledge via various channels, including conference speeches and open source projects and contributions. Kamil lives in Poland with his two cats and one dog, dedicating some of his time to video games, cooking, and traveling.
Read more about Kamil Mrzygłód