Velvet Star Monitor

Standout celebrity highlights with iconic style.

general

Install nvidia drivers for Ubuntu 18.04 SERVER

Writer Emily Wong

I need to install the nvidia drivers for Ubuntu SERVER 18.04.2, to run computations from a headless server on a nvidia RTX card.

I am asking because I have not yet found any clear guide to do that for the server 18.04.2 version of Ubuntu.

1 Answer

Run the following commands in your terminal to install the latest NVIDIA Drivers:

sudo add-apt-repository ppa:graphics-drivers/ppa
sudo apt update
sudo apt-get install ubuntu-drivers-common
sudo ubuntu-drivers autoinstall

If you get any unmet dependencies problems, manually install those unmet dependencies. For example, if you get:

nvidia-driver-418 : Depends: xserver-xorg-video-nvidia-418 (418.56-0ubuntu0~gpu18.04.1) but it is not going to be installed

Run:

sudo apt install xserver-xorg-video-nvidia-418 nvidia-driver-418

Finally, reboot.

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy