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 InstallingDrivers.md #139

Open
wants to merge 3 commits 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
24 changes: 21 additions & 3 deletions InstallingDrivers.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,31 @@


## Debian 11/12

### NVIDIA

Make sure having enabled 32bit repository :

sudo dpkg --add-architecture i386 && sudo add-apt-repository -y non-free && sudo add-apt-repository -y contrib && sudo apt update && sudo apt install nvidia-driver libvulkan1 libvulkan1:i386 nvidia-driver-libs:i386

Go to this website, https://developer.nvidia.com/cuda-downloads?target_os=Linux&target_arch=x86_64&Distribution=Debian, chose netowrk .deb and coy/paste the lines in the terminal to install nvidia repository to be updated to the latest stable drivers.

### AMD / Intel

Adding the kisak mesa repository as trusted :

sudo echo "deb [trusted=yes] https://ppa.launchpadcontent.net/kisak/kisak-mesa/ubuntu kinetic main" > /etc/apt/source.list.d/kisak-fresh.list && sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F63F0F2B90935439 && sudo mv /etc/apt/trusted.gpg /etc/apt/trusted.gpg.d/kisak-fresh.gpg && sudo dpkg --add-architecture i386 && sudo apt update && sudo apt full-upgrade -y && sudo apt install libgl1-mesa-dri:i386 mesa-vulkan-drivers mesa-vulkan-drivers:i386 && sudo apt-key adv --recv-keys --keyserver keyserver.ubuntu.com F63F0F2B90935439 && sudo mv /etc/apt/trusted.gpg /etc/apt/trusted.gpg.d/kisak-fresh.gpg

Reboot to apply changes.

## Ubuntu / KDE Neon / Other Ubuntu derivatives

### 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 nvidia-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 libvulkan1 libvulkan1:i386 nvidia-driver-libs:i386

Reboot to apply changes.

Expand Down