Replies: 2 comments 10 replies
-
|
Thanks for this amazing solution, really helpful great overview! |
Beta Was this translation helpful? Give feedback.
1 reply
-
|
I followed your steps but it still didn't seem to work. I'm using the 9800x3d + 5070ti |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
This thing has haunted me for weeks so I guess it would be a good idea to share the solution.
Problem: this MSI machine with RTX 5090 is too new and I couldn't install Ubuntu 22.04 on it. + I do not know how to build CARLA UE5 in Ubuntu 24.04.
My machine specs:
Hardware model: Micro-Star International Co., Ltd. US Desktop Infinite RS
Processor: Intel Core Ultra 9
Graphics: NVIDIA GeForce RTX 5090
1st failed attempt: made a bootable USB drive with Ubuntu 22.04.
After choosing "try or install ubuntu", the screen was pure black until I forced shutting down.
Solution
On a linux machine:
i. sudo apt update
ii. Decide which kernel you want to install
A. For latest supported kernel: sudo apt install --install-recommends linux-generic-hwe-22.04
B. Manually install new kernel (6.8) from ubuntu kernel ppa:
sudo add-apt-repository ppa:cappelikan/ppa
sudo apt install mainline
sudo mainline--install-latest
The auto installed NVIDIDA driver 570 couldn't work. It only showed the Intel integrated GPU in the system settings. So next step is to manually install the correct driver.
In this link: https://www.nvidia.com/en-us/drivers/
Type the GPU version in the "Manual Driver Search" bar. In my case, it was "GeForce RTX 5090 Linux 64-bit".
sudo apt purge nvidia-driver-570 nvidia-dkms-570
sudo apt autoremove
sudo systemctl isolate multi-user.target
Then just login using your username and pin
cd Downloads
sudo ./NVIDIA-Linux-x86_64-570.169.run. (If the version you downloaded is different, change the filename)
reboot
Beta Was this translation helpful? Give feedback.
All reactions