Skip to content

Commit a59859b

Browse files
author
Jill Grant
authored
Merge pull request #279382 from LouisBerner/v-loberner-ado-271792-remove-centos-7-references
Removed references to Centos 7.
2 parents f07a84e + 6a1c27f commit a59859b

6 files changed

+19
-23
lines changed

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

Lines changed: 12 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: databox
88
ms.subservice: edge
99
ms.custom: devx-track-azurecli
1010
ms.topic: how-to
11-
ms.date: 05/24/2022
11+
ms.date: 06/26/2024
1212
ms.author: alkohli
1313
#Customer intent: As an IT admin, I need to understand how to create and upload Azure VM images that I can use with my Azure Stack Edge Pro device so that I can deploy VMs on the device.
1414

@@ -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,28 +135,25 @@ 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 |
156156
| CentOS | CentOS 8.1 | 8.1.2020062400 | OpenLogic:CentOS:8_1:8.1.2020062400 |
157-
| CentOS | CentOS 7.7 | 7.7.2020062400 | OpenLogic:CentOS:7.7:7.7.2020062400 |
158-
159-
160157

161158
## Create a new managed disk from the Marketplace image
162159

@@ -179,7 +176,7 @@ Create an Azure Managed Disk from your chosen Marketplace image.
179176
$diskAccessSAS = ($sas | ConvertFrom-Json)[0].accessSas
180177
```
181178
182-
Here is an example output:
179+
Here's an example output:
183180
184181
```output
185182
PS /home/user> $urn = “MicrosoftWindowsServer:WindowsServer:2019-Datacenter:Latest”
@@ -251,9 +248,9 @@ PS /home/user>
251248

252249
## Export a VHD from the managed disk to Azure Storage
253250

254-
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.
255252

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

258255
```azurecli
259256
$storageAccountName = <destination storage account name>
@@ -269,13 +266,13 @@ This step will export a VHD from the managed disk to your preferred Azure blob s
269266
Start-AzureStorageBlobCopy -AbsoluteUri $diskAccessSAS -DestContainer $containerName -DestContext $destContext -DestBlob $destBlobName
270267
```
271268
272-
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.
273270
274271
```azurecli
275272
Get-AzureStorageBlobCopyState –Container $containerName –Context $destContext -Blob $destBlobName
276273
```
277274
278-
Here is an example output:
275+
Here's an example output:
279276
280277
```output
281278
PS /home/user> $storageAccountName = "edgeazurevmeus"

articles/databox-online/azure-stack-edge-gpu-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: alkohli
77
ms.service: databox
88
ms.subservice: edge
99
ms.topic: conceptual
10-
ms.date: 04/18/2024
10+
ms.date: 06/26/2024
1111
ms.author: alkohli
1212
ms.custom: devx-track-arm-template
1313
---

articles/databox-online/azure-stack-edge-mini-r-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: databox
88
ms.subservice: edge
99
ms.custom: devx-track-arm-template
1010
ms.topic: conceptual
11-
ms.date: 02/05/2021
11+
ms.date: 06/26/2024
1212
ms.author: alkohli
1313
---
1414
# Azure Stack Edge Mini R system requirements

articles/databox-online/azure-stack-edge-pro-2-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: databox
88
ms.subservice: edge
99
ms.custom: devx-track-arm-template
1010
ms.topic: conceptual
11-
ms.date: 06/02/2023
11+
ms.date: 06/26/2024
1212
ms.author: alkohli
1313
---
1414

articles/databox-online/azure-stack-edge-pro-r-system-requirements.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: alkohli
77
ms.service: databox
88
ms.subservice: edge
99
ms.topic: conceptual
10-
ms.date: 02/05/2021
10+
ms.date: 06/26/2024
1111
ms.author: alkohli
1212
---
1313
# Azure Stack Edge Pro R system requirements

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

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
author: alkohli
33
ms.service: databox
44
ms.topic: include
5-
ms.date: 11/19/2019
5+
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-
| CentOS | 7.0 |
18-
| Mac OS | 10.14.1 |
17+
| macOS | 10.14.1 |

0 commit comments

Comments
 (0)