Skip to content

Commit e59819b

Browse files
authored
Merge pull request #52407 from marabgol/patch-1
"`" should be replace to back slash "\" for Linux
2 parents 0cc6e9b + 5a54b3b commit e59819b

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

articles/virtual-machines/extensions/hpccompute-gpu-linux.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -137,15 +137,15 @@ Set-AzVMExtension
137137
The following example mirrors the above Azure Resource Manager and PowerShell examples and also adds custom settings as an example for non-default driver installation. Specifically, it updates the OS kernel and installs a specific CUDA toolkit version driver.
138138

139139
```azurecli
140-
az vm extension set `
141-
--resource-group myResourceGroup `
142-
--vm-name myVM `
143-
--name NvidiaGpuDriverLinux `
144-
--publisher Microsoft.HpcCompute `
145-
--version 1.2 `
146-
--settings '{ `
147-
"updateOS": true, `
148-
"driverVersion": "9.1.85", `
140+
az vm extension set \
141+
--resource-group myResourceGroup \
142+
--vm-name myVM \
143+
--name NvidiaGpuDriverLinux \
144+
--publisher Microsoft.HpcCompute \
145+
--version 1.2 \
146+
--settings '{ \
147+
"updateOS": true, \
148+
"driverVersion": "9.1.85", \
149149
}'
150150
```
151151

0 commit comments

Comments
 (0)