Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update out of date nvidia driver #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions InstallingDrivers.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@

### NVIDIA:

To get the latest NVIDIA drivers it is necessary to add the [Proprietary GPU Drivers PPA](https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa), enable 32 bit architecture (if you haven't already), update to refresh packages and then install the 515 driver and support for the Vulkan API (will be functional only if you have a [Vulkan capable GPU](https://en.wikipedia.org/wiki/Vulkan_(API)#Compatibility)):
To get the latest NVIDIA drivers it is necessary to add the [Proprietary GPU Drivers PPA](https://launchpad.net/~graphics-drivers/+archive/ubuntu/ppa), enable 32 bit architecture (if you haven't already), update to refresh packages and then install the 525 driver and support for the Vulkan API (will be functional only if you have a [Vulkan capable GPU](https://en.wikipedia.org/wiki/Vulkan_(API)#Compatibility)):

To do all of that, run this one command:

sudo add-apt-repository ppa:graphics-drivers/ppa && sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install -y nvidia-driver-515 libvulkan1 libvulkan1:i386
sudo add-apt-repository ppa:graphics-drivers/ppa && sudo dpkg --add-architecture i386 && sudo apt update && sudo apt install -y nvidia-driver-525 libvulkan1 libvulkan1:i386

Reboot to apply changes.

_**Warning**: Please ensure your graphics card is supported by the 515 driver before installing._
_**Warning**: Please ensure your graphics card is supported by the 525 driver before installing._
_For a list of supported GPUs click here: https://www.nvidia.com/Download/driverResults.aspx/186156/en-us_

_**Disclaimer**: Sometimes we forget to update the guide to reference the latest version of the NVIDIA driver._
_You can check the latest version of the Nvidia driver for your gpu here and then replace *515* in **nvidia-driver-515** with the first part of the version number (the one before the dot, **515**.48.07) that is actually latest: https://www.nvidia.com/Download/index.aspx_
_You can check the latest version of the Nvidia driver for your gpu here and then replace *525* in **nvidia-driver-525** with the first part of the version number (the one before the dot, **525**.48.07) that is actually latest: https://www.nvidia.com/Download/index.aspx_

### AMD / Intel:

Expand Down