Skip to content

Commit 4ec8376

Browse files
authored
Merge pull request #123740 from Gyarbij/patch-3
Update n-series-driver-setup.md
2 parents 3d23459 + e2c6224 commit 4ec8376

File tree

1 file changed

+11
-6
lines changed

1 file changed

+11
-6
lines changed

articles/virtual-machines/linux/n-series-driver-setup.md

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -62,24 +62,29 @@ Ubuntu packages NVIDIA proprietary drivers. Those drivers come directly from NVI
6262
Reboot the VM after the GPU driver is installed.
6363
3. Download and install the CUDA toolkit from NVIDIA:
6464
> [!NOTE]
65-
> The example shows the CUDA package path for Ubuntu 22.04 LTS. Replace the path specific to the version you plan to use.
65+
> The example shows the CUDA package path for Ubuntu 24.04 LTS. Replace the path specific to the version you plan to use.
6666
>
67-
> Visit the [NVIDIA Download Center](https://developer.download.nvidia.com/compute/cuda/repos/) or the [NVIDIA CUDA Resources page](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=20.04&target_type=deb_network) for the full path specific to each version.
67+
> Visit the [NVIDIA Download Center](https://developer.download.nvidia.com/compute/cuda/repos/) or the [NVIDIA CUDA Resources page](https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Ubuntu&target_version=24.04&target_type=deb_network) for the full path specific to each version.
6868
>
6969
```bash
70-
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2204/x86_64/cuda-keyring_1.1-1_all.deb
70+
wget https://developer.download.nvidia.com/compute/cuda/repos/ubuntu2404/x86_64/cuda-keyring_1.1-1_all.deb
7171
sudo apt install -y ./cuda-keyring_1.1-1_all.deb
7272
sudo apt update
73-
sudo apt -y install cuda-toolkit-12-3
73+
sudo apt -y install cuda-toolkit-12-5
7474
```
7575

7676
The installation can take several minutes.
7777

78-
4. Verify that the GPU is correctly recognized (you may need to reboot your VM for system changes to take effect):
78+
4. Reboot the VM after installation completes:
7979
```bash
80-
nvidia-smi
80+
sudo reboot
8181
```
8282

83+
5. Verify that the GPU is correctly recognized (after reboot):
84+
```bash
85+
nvidia-smi
86+
```
87+
8388
#### NVIDIA driver updates
8489

8590
We recommend that you periodically update NVIDIA drivers after deployment.

0 commit comments

Comments
 (0)