Skip to content

Commit 2b03504

Browse files
committed
Learn Editor: Update tutorial-manage-vm.md
1 parent 6c2de0a commit 2b03504

File tree

1 file changed

+11
-7
lines changed

1 file changed

+11
-7
lines changed

articles/virtual-machines/linux/tutorial-manage-vm.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,18 +25,19 @@ Azure virtual machines provide a fully configurable and flexible computing envir
2525
> * Resize a VM
2626
> * View and understand VM state
2727
28-
This tutorial uses the CLI within the [Azure Cloud Shell](../../cloud-shell/overview.md), which is constantly updated to the latest version. To open the Cloud Shell, select **Try it** from the top of any code block.
28+
This tutorial uses the CLI within the [Azure Cloud Shell](../../cloud-shell/overview.md), which is constantly updated to the latest version.
2929

3030
If you choose to install and use the CLI locally, this tutorial requires that you are running the Azure CLI version 2.0.30 or later. Run `az --version` to find the version. If you need to install or upgrade, see [Install Azure CLI]( /cli/azure/install-azure-cli).
3131

3232
## Create resource group
3333

3434
Create a resource group with the [az group create](/cli/azure/group) command.
3535

36-
An Azure resource group is a logical container into which Azure resources are deployed and managed. A resource group must be created before a virtual machine. In this example, a resource group named *myResourceGroupVM* is created in the *eastus* region.
36+
An Azure resource group is a logical container into which Azure resources are deployed and managed. A resource group must be created before a virtual machine. In this example, a resource group named *myResourceGroupVM* is created in the *eastus3* region.
37+
3738

3839
```azurecli-interactive
39-
az group create --name myResourceGroupVM --location eastus
40+
az group create --name myResourceGroupVM --location eastus3
4041
```
4142

4243
The resource group is specified when creating or modifying a VM, which can be seen throughout this tutorial.
@@ -45,13 +46,13 @@ The resource group is specified when creating or modifying a VM, which can be se
4546

4647
Create a virtual machine with the [az vm create](/cli/azure/vm) command.
4748

48-
When you create a virtual machine, several options are available such as operating system image, disk sizing, and administrative credentials. The following example creates a VM named *myVM* that runs Ubuntu Server. A user account named *azureuser* is created on the VM, and SSH keys are generated if they do not exist in the default key location (*~/.ssh*):
49+
When you create a virtual machine, several options are available such as operating system image, disk sizing, and administrative credentials. The following example creates a VM named *myVM* that runs SUSE Linux Enterprise Server (SLES). A user account named *azureuser* is created on the VM, and SSH keys are generated if they do not exist in the default key location (*~/.ssh*):
4950

5051
```azurecli-interactive
5152
az vm create \
5253
--resource-group myResourceGroupVM \
5354
--name myVM \
54-
--image UbuntuLTS \
55+
--image SLES \
5556
--admin-username azureuser \
5657
--generate-ssh-keys
5758
```
@@ -62,7 +63,7 @@ It may take a few minutes to create the VM. Once the VM has been created, the Az
6263
{
6364
"fqdns": "",
6465
"id": "/subscriptions/d5b9d4b7-6fc1-0000-0000-000000000000/resourceGroups/myResourceGroupVM/providers/Microsoft.Compute/virtualMachines/myVM",
65-
"location": "eastus",
66+
"location": "eastus3",
6667
"macAddress": "00-0D-3A-23-9A-49",
6768
"powerState": "VM running",
6869
"privateIpAddress": "10.0.0.4",
@@ -136,6 +137,7 @@ CentOS OpenLogic 6.5 OpenLogic:CentOS:6.5:6.5.20170207
136137
```
137138

138139

140+
139141
> [!NOTE]
140142
> Canonical has changed the **Offer** names they use for the most recent versions. Before Ubuntu 20.04, the **Offer** name is UbuntuServer. For Ubuntu 20.04 the **Offer** name is `0001-com-ubuntu-server-focal` and for Ubuntu 22.04 it's `0001-com-ubuntu-server-jammy`.
141143
@@ -163,6 +165,7 @@ The following table categorizes sizes into use cases.
163165
| [High performance](../sizes-hpc.md) | H | Our most powerful CPU VMs with optional high-throughput network interfaces (RDMA). |
164166

165167

168+
166169
### Find available VM sizes
167170

168171
To see a list of VM sizes available in a particular region, use the [az vm list-sizes](/cli/azure/vm) command.
@@ -202,7 +205,7 @@ In the previous VM creation example, a size was not provided, which results in a
202205
az vm create \
203206
--resource-group myResourceGroupVM \
204207
--name myVM3 \
205-
--image UbuntuLTS \
208+
--image SLES \
206209
--size Standard_F4s \
207210
--generate-ssh-keys
208211
```
@@ -331,3 +334,4 @@ Advance to the next tutorial to learn about VM disks.
331334

332335
> [!div class="nextstepaction"]
333336
> [Create and Manage VM disks](./tutorial-manage-disks.md)
337+

0 commit comments

Comments
 (0)