You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/blog/posts/2025-12-01-nvidia-gpu-setup.md
+56-22Lines changed: 56 additions & 22 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,42 +80,76 @@ sudo reboot
80
80
81
81
Wait a minute or two for the instance to come back up, then SSH back in. You can verify your kernel version with `uname -r` to confirm the upgrade took effect.
82
82
83
-
Here's where things get real. NVIDIA provides drivers specifically optimized for datacenter GPUs like the H100 and A30. We're using the 580.x branch, which is the current production release for these cards. However, always check [NVIDIA's official driver page](https://www.nvidia.com/Download/index.aspx) for the latest recommendations.
83
+
=== "Official NVIDIA Drivers"
84
84
85
-
Download the driver package.
85
+
Here's where things get real. NVIDIA provides drivers specifically optimized for datacenter GPUs like the H100 and A30. We're using the 580.x branch, which is the current production release for these cards. However, always check [NVIDIA's official driver page](https://www.nvidia.com/Download/index.aspx) for the latest recommendations.
If you prefer the open-source kernel modules (which NVIDIA now provides for datacenter GPUs), you can install those instead:
115
+
116
+
```bash
117
+
sudo apt install -y nvidia-open-580
118
+
```
119
+
120
+
The open drivers provide identical functionality for compute workloads and are fully supported on H100/A30 hardware. The choice between proprietary and open modules is largely philosophical at this point, both work.
121
+
122
+
=== "Distro Drivers"
123
+
124
+
Ubuntu includes NVIDIA drivers in its default repositories. While these may not always be the absolute latest, they are tested and integrated with the distro's kernel.
If you prefer the open-source kernel modules (which NVIDIA now provides for datacenter GPUs), you can install those instead:
128
+
```bash
129
+
sudo apt install -y ubuntu-drivers-common
130
+
```
131
+
132
+
Use the `ubuntu-drivers` tool to automatically identify and install the recommended NVIDIA driver for your GPU.
113
133
114
134
```bash
115
-
sudo apt install -y nvidia-open-580
135
+
sudo ubuntu-drivers autoinstall
116
136
```
117
137
118
-
The open drivers provide identical functionality for compute workloads and are fully supported on H100/A30 hardware. The choice between proprietary and open modules is largely philosophical at this point, both work.
0 commit comments