Skip to content

Commit dc9e5b8

Browse files
authored
Merge pull request #17468 from LouisBerner/v-loberner-ado-407927-local-vm-mgmt-rebranding-2
Updated with rebranding changes.
2 parents 2a9ff9e + bb40e54 commit dc9e5b8

File tree

6 files changed

+31
-35
lines changed

6 files changed

+31
-35
lines changed

azure-local/manage/connect-arc-vm-using-ssh.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
---
2-
title: Connect to an Arc VM on Azure Local using SSH
3-
description: Learn how to use SSH to connect to an Arc VM on Azure Local.
2+
title: Connect to an Azure Local virtual machine (VM) using SSH
3+
description: Learn how to use SSH to connect to an Azure Local VM enabled by Azure Arc.
44
author: alkohli
55
ms.author: alkohli
66
ms.topic: how-to
77
ms.service: azure-local
8-
ms.date: 02/18/2025
8+
ms.date: 04/04/2025
99

1010
#customer intent: As a Senior Content Developer, I want to provide customers with the highest level of content for using disconneced operations to deploy and manage their Azure Local instances.
1111
---
1212

13-
# Connect to an Arc VM on Azure Local using SSH and RDP over SSH
13+
# Connect to an Azure Local VM using SSH and RDP over SSH
1414

1515
[!INCLUDE [hci-applies-to-23h2](../includes/hci-applies-to-23h2.md)]
1616

17-
This article provides an example to connect to an Azure Arc VM on Azure Local using Secure Shell (SSH) and Remote Desktop (RDP) over SSH. The example demonstrates enabling the OpenSSH Server via the Arc Extension using Azure portal and Azure CLI.
17+
This article provides an example to connect to an Azure Local VM using Secure Shell (SSH) and Remote Desktop (RDP) over SSH. The example demonstrates enabling the OpenSSH Server via the Arc extension using Azure portal and Azure CLI.
1818

19-
## More about the SSH Server Extension
19+
## About SSH Server extension
2020

2121
You can open an RDP connection to every Windows Server from the Azure CLI without a VPN or another open port through your firewall. For more information, see [SSH access to Azure Arc-enabled servers](/azure/azure-arc/servers/ssh-arc-overview?tabs=azure-cli).
2222

@@ -107,7 +107,7 @@ Before you begin, ensure that you:
107107

108108
:::image type="content" source="./media/connect-arc-vm-using-ssh/azure-portal-extensions-list-view-3.png" alt-text="Screenshot of Azure portal Extensions list view." lightbox="./media/connect-arc-vm-using-ssh/azure-portal-extensions-list-view-3.png":::
109109

110-
## Use SSH to connect to an Arc VM on Azure Local
110+
## Use SSH to connect to an Azure Local VM
111111

112112
> [!NOTE]
113113
> You may be asked to allow Arc SSH to set up port 22 for SSH.
@@ -124,7 +124,7 @@ Use the following steps to connect to Azure Local.
124124

125125
:::image type="content" source="./media/connect-arc-vm-using-ssh/server-connection-6.png" alt-text="Screenshot of server connection over SSH." lightbox="./media/connect-arc-vm-using-ssh/server-connection-6.png":::
126126

127-
## Use RDP over SSH to connect an Arc VM on Azure Local
127+
## Use RDP over SSH to connect an Azure Local VM
128128

129129
1. To sign into Azure Local using RDP over SSH, run the following command with the RDP parameter:
130130

@@ -148,4 +148,4 @@ Use the following steps to connect to Azure Local.
148148

149149
## Next steps
150150

151-
- [What is Azure Arc VM management?](azure-arc-vm-management-overview.md)
151+
- [What is Azure Local VM management?](azure-arc-vm-management-overview.md)

azure-local/manage/gpu-manage-via-partitioning.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ author: alkohli
55
ms.author: alkohli
66
ms.topic: how-to
77
ms.service: azure-local
8-
ms.date: 02/04/2024
8+
ms.date: 03/26/2025
99
---
1010

1111
# Manage GPUs using partitioning (preview)
1212

1313
[!INCLUDE [hci-applies-to-23h2](../includes/hci-applies-to-23h2.md)]
1414

15-
This article describes how to manage GPU-P with Arc virtual machines (VMs) for Azure Local. GPU Partitioning (GPU-P) allows you to share a graphical processing unit (GPU) with multiple workloads by splitting the GPU into dedicated fractional partitions.
15+
This article describes how to manage GPU-P with Azure Local virtual machines (VMs) enabled by Azure Arc. GPU Partitioning (GPU-P) allows you to share a graphical processing unit (GPU) with multiple workloads by splitting the GPU into dedicated fractional partitions.
1616

1717
> [!IMPORTANT]
1818
> This feature is currently in PREVIEW. See the [Supplemental Terms of Use for Microsoft Azure Previews](https://azure.microsoft.com/support/legal/preview-supplemental-terms/) for legal terms that apply to Azure features that are in beta, preview, or otherwise not yet released into general availability.
@@ -39,19 +39,19 @@ Consider the following limitations when using the GPU-P feature:
3939

4040
## Prerequisites
4141

42-
- See [Prepare GPUs for Azure Local](./gpu-manage-via-partitioning.md) for requirements and to prepare your Azure Local and Arc VMs, and to ensure that your GPUs are prepared and partitioned.
42+
- See [Prepare GPUs for Azure Local](./gpu-manage-via-partitioning.md) for requirements and to prepare your Azure Local VMs, and to ensure that your GPUs are prepared and partitioned.
4343

44-
## Attach a GPU during Arc VM creation
44+
## Attach a GPU during Azure Local VM creation
4545

46-
Follow the steps outlined in [Create Arc virtual machines on Azure Local](create-arc-virtual-machines.md?tabs=azurecli) and utilize the additional hardware profile details to add GPU to your create process. Run the following:
46+
Follow the steps outlined in [Create Azure Local virtual machines](create-arc-virtual-machines.md?tabs=azurecli) and utilize the additional hardware profile details to add GPU to your create process. Run the following:
4747

4848
```azurecli
4949
az stack-hci-vm create --name $vmName --resource-group $resource_group --admin-username $userName --admin-password $password --computer-name $computerName --image $imageName --location $location --authentication-type all --nics $nicName --custom-location $customLocationID --hardware-profile memory-mb="8192" processors="4" --storage-path-id $storagePathId --gpus GpuP
5050
```
5151

5252
For more information, see [az stack-hci-vm create](/cli/azure/stack-hci-vm).
5353

54-
## Attach a GPU after Arc VM creation
54+
## Attach a GPU after Azure Local VM creation
5555

5656
Use the following CLI command to attach the GPU:
5757

@@ -101,4 +101,4 @@ For more information on the GPU attach command, see [az stack-hci-vm gpu](/cli/a
101101

102102
## Next steps
103103

104-
- [Manage GPUs using Discrete Device Assignment](./gpu-manage-via-device.md)
104+
- [Manage GPUs using Discrete Device Assignment](./gpu-manage-via-device.md).
-2.48 KB
Loading

azure-local/manage/trusted-launch-automatic-state-transfer.md

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,20 @@ ms.topic: how-to
55
author: alkohli
66
ms.author: alkohli
77
ms.service: azure-local
8-
ms.date: 02/27/2025
8+
ms.date: 04/04/2025
99
---
1010

11-
# Automatic transfer of virtual TPM state for Trusted launch VMs on Azure Local
11+
# Automatic transfer of virtual TPM state for Trusted launch for Azure Local VMs
1212

1313
[!INCLUDE [applies-to](../includes/hci-applies-to-23h2.md)]
1414

15-
This article uses an example to illustrate the automatic transfer of virtual TPM (vTPM) state in the case of Trusted launch Arc VMs on Azure Local, even as the VM migrates or fails over to another machine in the system. This operation allows the applications that use the vTPM to function normally during VM migration or fail over.
16-
15+
This article uses an example to illustrate the automatic transfer of virtual TPM (vTPM) state for Trusted launch for Azure Local VM, even as the VM migrates or fails over to another machine in the system. This operation allows the applications that use the vTPM to function normally during VM migration or failover.
1716

1817
## Example
1918

20-
This example shows a Trusted launch Arc VM running Windows 11 guest with BitLocker encryption enabled. Here are the steps to run this example:
19+
This example shows a Trusted launch for Azure Local VM running Windows 11 guest with BitLocker encryption enabled. Here are the steps to run this example:
2120

22-
1. Create a Trusted launch Arc VM running a supported Windows 11 guest operating system (OS).
21+
1. Create an Azure Local Trusted launch VM running a supported Windows 11 guest operating system (OS).
2322

2423
1. Enable BitLocker encryption for the OS volume on the Win 11 guest. Sign on to the Windows 11 guest and enable BitLocker encryption for the OS volume:
2524

@@ -79,7 +78,6 @@ This example shows a Trusted launch Arc VM running Windows 11 guest with BitLock
7978
> [!NOTE]
8079
> If vTPM state wasn't preserved during VM migration, VM startup would result in BitLocker recovery during guest boot up. You would be prompted for the BitLocker recovery password when you attempted to sign on to the Windows 11 guest. This situation occurs because the boot measurement (stored in the vTPM) of the migrated VM on the destination node is different from that of the original VM.
8180
82-
8381
## Next steps
8482
85-
- [Manage Trusted launch Arc VM guest state protection key](trusted-launch-vm-import-key.md).
83+
- [Manage Trusted launch for Azure Local VM guest state protection key](trusted-launch-vm-import-key.md).

azure-local/manage/virtual-machine-image-local-share.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,14 @@ ms.topic: how-to
77
ms.service: azure-local
88
ms.custom:
99
- devx-track-azurecli
10-
ms.date: 11/21/2024
10+
ms.date: 03/25/2025
1111
---
1212

1313
# Create Azure Local VM image using images in a local share
1414

1515
[!INCLUDE [hci-applies-to-23h2](../includes/hci-applies-to-23h2.md)]
1616

17-
This article describes how to create virtual machine (VM) images for Azure Local using source images from a local share. You can create VM images using the Azure portal or Azure CLI and then use these VM images to create Arc VMs on Azure Local.
18-
17+
This article describes how to create virtual machine (VM) images for Azure Local using source images from a local share. You can create VM images using the Azure portal or Azure CLI and then use these VM images to create Azure Local VMs.
1918

2019
## Prerequisites
2120

@@ -94,7 +93,7 @@ Follow these steps to create a VM image using the Azure CLI.
9493
9594
```
9695
97-
A deployment job starts for the VM image.
96+
A deployment job starts for the VM image.
9897
9998
In this example, the storage path was specified using the `--storage-path-id` flag and that ensured that the workload data (including the VM, VM image, non-OS data disk) is placed in the specified storage path.
10099
@@ -234,7 +233,6 @@ You might want to view the properties of VM images before you use the image to c
234233
235234
---
236235
237-
238236
## Delete VM image
239237
240238
You might want to delete a VM image if the download fails for some reason or if the image is no longer needed. Follow these steps to delete the VM images.

azure-local/manage/vm-powershell.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Manage VMs using Windows PowerShell on Azure Local
33
description: How to manage virtual machines on Azure Local using Windows PowerShell
44
author: alkohli
55
ms.topic: how-to
6-
ms.date: 01/16/2025
6+
ms.date: 03/26/2025
77
ms.author: alkohli
88
ms.reviewer: stevenek
99
ms.service: azure-local
@@ -101,7 +101,7 @@ Start-VM -Name VM1 -ComputerName Server1
101101
The following example shows how to shut down a VM named TestVM:
102102

103103
```powershell
104-
Stop-VM -Name VM1 -ComputerName Server1
104+
Stop-VM -Name TestVM -ComputerName Server1
105105
```
106106

107107
## Move a VM
@@ -127,7 +127,7 @@ The `Import-VM` and `Export-VM` cmdlets import and export a VM. The following sh
127127
The following example shows how to import a VM from its configuration file. The VM is registered in-place, so its files aren't copied:
128128

129129
```powershell
130-
Import-VM -ComputerName Server1 -Name VM1 -Path 'C:\<vm export path>\2B91FEB3-F1E0-4FFF-B8BE-29CED892A95A.vmcx'
130+
Import-VM -ComputerName Server1 -Name VM1 -Path 'C:\<vm export path>\2B91FEB3-F6F0-4FFF-B8BE-29CED892A95A.vmcx'
131131
```
132132

133133
The following example exports a VM to the root of the D drive:
@@ -150,10 +150,10 @@ Rename-VM -ComputerName Server1 -Name VM1 -NewName VM2
150150

151151
The `Checkpoint-VM` cmdlet is used to create a checkpoint for a VM. For detailed information, see the [Checkpoint-VM](/powershell/module/hyper-v/checkpoint-vm) reference documentation.
152152

153-
The following example creates a checkpoint named BeforeInstallingUpdates for the VM named Test.
153+
The following example creates a checkpoint named BeforeInstallingUpdates for the VM named Test1.
154154

155155
```powershell
156-
Checkpoint-VM -ComputerName Server1 -Name VM1 -SnapshotName BeforeInstallingUpdates
156+
Checkpoint-VM -ComputerName Server1 -Name Test1 -SnapshotName BeforeInstallingUpdates
157157
```
158158

159159
## Create a VHD for a VM
@@ -242,4 +242,4 @@ Remove-ClusterGroup -RemoveResources -Name VM1
242242

243243
## Next steps
244244

245-
You can also create and manage VMs using Windows Admin Center. For more information, see [Windows Admin Center](vm.md).
245+
You can also create and manage VMs using Windows Admin Center. For more information, see [Windows Admin Center](vm.md).

0 commit comments

Comments
 (0)