Skip to content

Commit 6a1c27f

Browse files
committed
Acrolinx updates
1 parent 8f1bf82 commit 6a1c27f

File tree

2 files changed

+13
-13
lines changed

2 files changed

+13
-13
lines changed

articles/databox-online/azure-stack-edge-gpu-create-virtual-machine-marketplace-image.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Before you can use Azure Marketplace images for Azure Stack Edge, make sure you'
4545

4646
## Search for Azure Marketplace images
4747

48-
You'll now identify a specific Azure Marketplace image that you wish to use. Azure Marketplace hosts thousands of VM images.
48+
Identify a specific Azure Marketplace image that you wish to use. Azure Marketplace hosts thousands of VM images.
4949

5050
To find some of the most commonly used Marketplace images that match your search criteria, run the following command.
5151

@@ -67,7 +67,7 @@ az vm image list --all --location "westus" --publisher "MicrosoftWindowsserver"
6767
az vm image list --all --publisher "Canonical"
6868
```
6969

70-
Here is an example output when VM images of a certain publisher, offer, and SKU were queried.
70+
Here's an example output when VM images of a certain publisher, offer, and SKU were queried.
7171

7272
```azurecli
7373
PS /home/user> az vm image list --all --publisher "Canonical" --offer "UbuntuServer" --sku "12.04.4-LTS"
@@ -135,21 +135,21 @@ PS /home/user> az vm image list --all --publisher "Canonical" --offer "UbuntuSer
135135
PS /home/user>
136136
```
137137

138-
In this example, we will select Windows Server 2019 Datacenter Core, version 2019.0.20190410. We will identify this image by its Universal Resource Number (“URN”).
138+
In this example, we'll select Windows Server 2019 Datacenter Core, version 2019.0.20190410. We'll identify this image by its Universal Resource Number (“URN”).
139139

140140
:::image type="content" source="media/azure-stack-edge-create-virtual-machine-marketplace-image/marketplace-image-1.png" alt-text="List of marketplace images":::
141141

142142
### Commonly used Marketplace images
143143

144-
Below is a list of URNs for some of the most commonly used images. If you just want the latest version of a particular OS, the version number can be replaced with latest in the URN. For example, “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”.
144+
Below is a list of URNs for some of the most commonly used images. If you just want the latest version of a particular OS, the version number can be replaced with "latest" in the URN. For example, “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”.
145145

146146

147147
| OS | SKU | Version | URN |
148148
|-----------------|-----------------------------------------|-----------------------|-------------------------------------------------------------------------------------------|
149149
| Windows Server | 2019 Datacenter | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter:17763.1879.2104091832 |
150-
| Windows Server | 2019 Datacenter (30 GB small disk) | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:17763.1879.2104091832 |
150+
| Windows Server | 2019 Datacenter (30-GB small disk) | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter-smalldisk:17763.1879.2104091832 |
151151
| Windows Server | 2019 Datacenter Core | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core:17763.1879.2104091832 |
152-
| Windows Server | 2019 Datacenter Core (30 GB small disk) | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:17763.1879.2104091832 |
152+
| Windows Server | 2019 Datacenter Core (30-GB small disk) | 17763.1879.2104091832 | MicrosoftWindowsServer:WindowsServer:2019-Datacenter-Core-smalldisk:17763.1879.2104091832 |
153153
| Windows Desktop | Windows 10 20H2 Pro | 19042.928.2104091209 | MicrosoftWindowsDesktop:Windows-10:20h2-pro:19042.928.2104091209 |
154154
| Ubuntu Server | Canonical Ubuntu Server 18.04 LTS | 18.04.202002180 | Canonical:UbuntuServer:18.04-LTS:18.04.202002180 |
155155
| Ubuntu Server | Canonical Ubuntu Server 16.04 LTS | 16.04.202104160 | Canonical:UbuntuServer:16.04-LTS:16.04.202104160 |
@@ -176,7 +176,7 @@ Create an Azure Managed Disk from your chosen Marketplace image.
176176
$diskAccessSAS = ($sas | ConvertFrom-Json)[0].accessSas
177177
```
178178
179-
Here is an example output:
179+
Here's an example output:
180180
181181
```output
182182
PS /home/user> $urn = “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”
@@ -248,9 +248,9 @@ PS /home/user>
248248

249249
## Export a VHD from the managed disk to Azure Storage
250250

251-
This step will export a VHD from the managed disk to your preferred Azure blob storage account. This VHD can then be used to create VM images on Azure Stack Edge.
251+
This step exports a VHD from the managed disk to your preferred Azure blob storage account. This VHD can then be used to create VM images on Azure Stack Edge.
252252

253-
1. Set the destination storage account where the VHD will be copied.
253+
1. Set the destination storage account where the VHD is copied.
254254

255255
```azurecli
256256
$storageAccountName = <destination storage account name>
@@ -266,13 +266,13 @@ This step will export a VHD from the managed disk to your preferred Azure blob s
266266
Start-AzureStorageBlobCopy -AbsoluteUri $diskAccessSAS -DestContainer $containerName -DestContext $destContext -DestBlob $destBlobName
267267
```
268268
269-
The VHD copy will take several minutes to complete. Ensure the copy has completed before proceeding by running the following command. The status field will show “Success” when complete.
269+
The VHD copy takes several minutes to complete. Ensure the copy completes before proceeding by running the following command. The status field shows “Success” when complete.
270270
271271
```azurecli
272272
Get-AzureStorageBlobCopyState –Container $containerName –Context $destContext -Blob $destBlobName
273273
```
274274
275-
Here is an example output:
275+
Here's an example output:
276276
277277
```output
278278
PS /home/user> $storageAccountName = "edgeazurevmeus"

includes/azure-stack-edge-gateway-supported-client-os.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ ms.date: 06/26/2024
66
ms.author: alkohli
77
---
88

9-
Here is a list of the supported operating systems for clients or hosts connected to your device. These operating system versions were tested in-house.
9+
Here's a list of the supported operating systems for clients or hosts connected to your device. These operating system versions were tested in-house.
1010

1111
| **Operating system/platform** | **Versions** |
1212
| --- | --- |
1313
| Windows Server |2016 <br> 2019|
1414
| Windows |10 |
1515
| SUSE Linux |Enterprise Server 12 (x86_64)|
1616
| Ubuntu |16.04.3 LTS|
17-
| Mac OS | 10.14.1 |
17+
| macOS | 10.14.1 |

0 commit comments

Comments
 (0)