Skip to main content

HowTo:Install NVIDIA GPU driver

TWSC offers vgv-series instances equipped with NVIDIA® Tesla V100 GPUs. When you finish creating a VCS GPU instance, please follow steps below to install NVIDIA GPU driver to enable GPU resources to accelerate computing.

info

This tutorial will demonstrate the driver installation steps with a Linux instance. For Windows instances, please remote access to the instance, and search for the suitable driver, install the driver, and verify the driver installation.

Step 1. Search for the suitable driver

  • Visit NVIDIA official website, select appropriate information, and click Search to search the GPU driver.

    • Product Type: Data Center / Tesla
    • Product Serires: V-Series
    • Product: Tesla V100
    • Operating System: Select an OS matching your instance
    • CUDA Toolkit: Select a version according to your needs
    • Language: Select a language according to your needs

  • Click Download.

  • Right-click on the Agree & Download button, and copy the link address of the driver.

  • If you have graphics-intensive workloads, such as 3D visualization, you can create virtual workstations that use NVIDIA RTX Virtual Workstations (formerly known as NVIDIA GRID).
Click here to download NVIDIA RTX virtual workstation driver:

Windows

Driver VersionGrid VersionDownload
528.8915.2Download
528.2415.1Download
527.4115.0Download
514.0814.4Download
512.7814.1Download
474.1413.6Download
472.3913.1Download
471.6813.0Download
463.1512.4Download
462.9612.3Download
461.3312.1Download
453.2311.6Download
452.9611.4Download
451.4811.0Download

Linux

Driver VersionGrid VersionDownload
525.105.1715.2Download
525.85.0515.1Download
525.60.1315.0Download
510.108.0314.4Download
510.73.0814.1Download
470.161.0313.6Download
470.82.0113.1Download
470.63.0113.0Download
460.106.0012.4Download
460.91.0312.3Download
460.32.0312.1Download
450.156.0011.6Download
450.119.0311.4Download
450.51.0511.0Download

Step 2. Download driver on VCS intance

Connect to your VCS instance, and download the driver on the instance with the command below.

wget https://tw.download.nvidia.com/tesla/550.90.07/NVIDIA-Linux-x86_64-550.90.07.run // The driver URL

Step 3. Install libc-dev

sudo apt-get update
sudo apt-get install libc-dev -y

Step 4. Install the matching kernel header

sudo apt-get install linux-headers-$(uname -r)

Step 5. Disable Nouveau

  • Enter the command below to change the Nouveau configuration.
sudo vi /etc/modprobe.d/blacklist.conf
  • Press i > Type commands below for disabling Nouveau > Press esc > type :wq! to save.
blacklist nouveau
options nouveau modeset=0

  • Restore the kernel, and then reboot.
sudo update-initramfs -u
sudo reboot
  • Reconnect to your instance, and check to ensure that Nouveau has been disabled. Nothing returned indicates successfully disabled.
lsmod | grep nouveau

Step 6. Run the driver

sudo chmod +x NVIDIA-Linux-x86_64-550.90.07.run // The driver file name
sudo ./NVIDIA-Linux-x86_64-550.90.07.run // The driver file name

Step 7. Configure according to your needs

Select yes or ok to finish the installation if you don't have special needs for the driver.

info

Select with the left arrow key or right arrow key, and press enter to confirm.

Step 8. Verify the driver installation

Verify the driver installation by running the command below. If the driver is installed, you will see the NVIDIA V100 GPU information returned.

nvidia-smi

info

Verify the driver installation - Windows instances

Once the GPU driver downloading and installation is complete, you can open Device Manager to check whether the driver is installed successfully.