-
-
Save ike-taku/6df07f99f43fe65eaa44af74a0ddf521 to your computer and use it in GitHub Desktop.
Guide to install nvidia eGpu on ubuntu 22.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
DISCLAIMER | |
This might break your current partition, no guarantees for any damages these steps might cause | |
System: MSI summit with i7 1280P, RTX 3070, Razer Core X | |
1. install nvidia driver: | |
- sudo apt-get install nvidia-driver-525-open | |
2. reboot | |
3. install eGPU switcher: | |
- download release 0.19.0 egpu-switcher-amd64 | |
- sudo cp Downloads/egpu-switcher-amd64 /opt/egpu-switcher | |
- sudo chmod 755 /opt/egpu-switcher | |
- sudo ln -s /opt/egpu-switcher /usr/bin/egpu-switcher | |
- sudo egpu-switcher enable | |
- select eGPU | |
4. reboot | |
5. add Kernel parameter | |
- sudo nano /etc/default/grub | |
- change line GRUB_CMDLINE_LINUX_DEFAULT="quiet splash" to GRUB_CMDLINE_LINUX_DEFAULT="quiet splash nvidia.NVreg_OpenRmEnableUnsupportedGpus=1" | |
- sudo update-grub | |
6. reboot | |
7. done! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment