cc_staff
247
edits
(Created page with "{{Draft}} <languages /> <translate> == How to use GPU in cloud VMs == <!--T:1--> This Howto describes the steps needed to allocate GPU resources to a virtual machine (VM), in...") |
No edit summary |
||
Line 26: | Line 26: | ||
deb http://deb.debian.org/debian buster-updates main contrib non-free | deb http://deb.debian.org/debian buster-updates main contrib non-free | ||
</pre> | </pre> | ||
<!--T:4--> | |||
===== <u>Installing the Nvidia Driver</u> ===== | |||
The following command will update the apt cache, so that apt will be aware of the new software pool sections, runs an upgrade to update the OS to the latest software versions and installs the kernel headers, the nvidia-driver and the pciutils, which will be required to list the devices connected to the PCI bus. | |||
<pre> | |||
apt-get update && apt-get -y dist-upgrade && apt-get -y install pciutils linux-headers-`uname -r` nvidia-driver | |||
</pre> | |||
After the installation has finished, | |||
</translate> | </translate> |