From c73a8f662b12715e340c1dfb05a92c75b18b9acd Mon Sep 17 00:00:00 2001 From: Davius <66792063+Xdavius@users.noreply.github.com> Date: Mon, 12 Jun 2023 16:57:21 +0200 Subject: [PATCH 1/3] Update InstallingDrivers.md Update for Debian Modification For Ubuntu --- InstallingDrivers.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/InstallingDrivers.md b/InstallingDrivers.md index ced2d01..83e9bec 100644 --- a/InstallingDrivers.md +++ b/InstallingDrivers.md @@ -1,13 +1,31 @@  +## Debian + +### NVIDIA + +Make sure having enabled 32bit repository : + + sudo dpkg --add-architecture 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 Reboot to apply changes. From e3f594aaaed439d60075f1401bb94beaf98e937b Mon Sep 17 00:00:00 2001 From: Davius <66792063+Xdavius@users.noreply.github.com> Date: Mon, 12 Jun 2023 21:15:32 +0200 Subject: [PATCH 2/3] Update InstallingDrivers.md --- InstallingDrivers.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/InstallingDrivers.md b/InstallingDrivers.md index 83e9bec..7236913 100644 --- a/InstallingDrivers.md +++ b/InstallingDrivers.md @@ -5,7 +5,16 @@ Make sure having enabled 32bit repository : - sudo dpkg --add-architecture i386 + sudo dpkg --add-architecture i386 && sudo add-apt-repository non-free && sudo add-apt-repository contrib && sudo apt update && sudo apt install nvidia-driver + + + + + + + + + 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. From 9387cfb0320798c18f5eac4768c94dff89b8fe80 Mon Sep 17 00:00:00 2001 From: Davius <66792063+Xdavius@users.noreply.github.com> Date: Wed, 21 Jun 2023 11:40:29 +0200 Subject: [PATCH 3/3] Update InstallingDrivers.md --- InstallingDrivers.md | 17 ++++------------- 1 file changed, 4 insertions(+), 13 deletions(-) diff --git a/InstallingDrivers.md b/InstallingDrivers.md index 7236913..07455b8 100644 --- a/InstallingDrivers.md +++ b/InstallingDrivers.md @@ -1,20 +1,11 @@ - -## Debian + +## Debian 11/12 ### NVIDIA Make sure having enabled 32bit repository : - sudo dpkg --add-architecture i386 && sudo add-apt-repository non-free && sudo add-apt-repository contrib && sudo apt update && sudo apt install nvidia-driver - - - - - - - - - + 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. @@ -34,7 +25,7 @@ To get the latest NVIDIA drivers it is necessary to add the [Proprietary GPU Dri 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 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.