You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/orbital/howto-downlink-aqua.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -81,7 +81,7 @@ Sign in to the [Azure portal - Orbital Preview](https://aka.ms/orbital/portal).
81
81
82
82
## Prepare a virtual machine (VM) to receive the downlinked AQUA data
83
83
1.[Create a virtual network](../virtual-network/quick-create-portal.md) to host your data endpoint virtual machine (VM)
84
-
2.[Create a virtual machine (VM)](../virtual-network/quick-create-portal.md) within the virtual network above. Ensure that this VM has the following specifications:
84
+
2.[Create a virtual machine (VM)](../virtual-network/quick-create-portal.md#create-virtual-machines) within the virtual network above. Ensure that this VM has the following specifications:
85
85
- Operation System: Linux (Ubuntu 18.04 or higher)
86
86
- Size: at least 32 GiB of RAM
87
87
- Ensure that the VM has at least one standard public IP
A full list can be seen by adding the `--all`argument. The image list can also be filtered by `--publisher` or `–-offer`. In this example, the list is filtered for all images with an offer that matches *CentOS*.
116
+
A full list can be seen by adding the `--all`parameter. The image list can also be filtered by `--publisher` or `–-offer`. In this example, the list is filtered for all images with an offer that matches *CentOS*.
117
117
118
118
```azurecli-interactive
119
119
az vm image list --offer CentOS --all --output table
To deploy a VM using a specific image, take note of the value in the *Urn* column, which consists of the publisher, offer, SKU, and optionally a version number to [identify](cli-ps-findimage.md#terminology) the image. When specifying the image, the image version number can be replaced with “latest”, which selects the latest version of the distribution. In this example, the `--image`argument is used to specify the latest version of a CentOS 6.5 image.
135
+
To deploy a VM using a specific image, take note of the value in the *Urn* column, which consists of the publisher, offer, SKU, and optionally a version number to [identify](cli-ps-findimage.md#terminology) the image. When specifying the image, the image version number can be replaced with `latest`, which selects the latest version of the distribution. In this example, the `--image`parameter is used to specify the latest version of a CentOS 6.5 image.
136
136
137
137
```azurecli-interactive
138
138
az vm create --resource-group myResourceGroupVM --name myVM2 --image OpenLogic:CentOS:6.5:latest --generate-ssh-keys
@@ -189,7 +189,7 @@ Partial output:
189
189
190
190
### Create VM with specific size
191
191
192
-
In the previous VM creation example, a size was not provided, which results in a default size. A VM size can be selected at creation time using [az vm create](/cli/azure/vm) and the `--size`argument.
192
+
In the previous VM creation example, a size was not provided, which results in a default size. A VM size can be selected at creation time using [az vm create](/cli/azure/vm) and the `--size`parameter.
193
193
194
194
```azurecli-interactive
195
195
az vm create \
@@ -323,4 +323,4 @@ In this tutorial, you learned about basic VM creation and management such as how
323
323
Advance to the next tutorial to learn about VM disks.
324
324
325
325
> [!div class="nextstepaction"]
326
-
> [Create and Manage VM disks](./tutorial-manage-disks.md)
326
+
> [Create and Manage VM disks](./tutorial-manage-disks.md)
0 commit comments