Replies: 6 comments 16 replies
|
Thanks for this amazing solution, really helpful great overview! |
|
I followed your steps but it still didn't seem to work. I'm using the 9800x3d + 5070ti |
|
I had the similar issues; Later installed Ubuntu 22.04 by unchecking third party installation, which is not installing necessary packages but this time we had to install many necessary drivers manually and set up settings manually. Still working with minor issues but necessary features are working. Basically, with many other trials plus: returned: OpenGL renderer string: NVIDIA GeForce RTX 5090 Laptop GPU/PCIe/SSE2 worked for me. |
|
I got it working, thank you except one thing, my motherboard X870 AORUS ELITE WIFI7, which has Wifi 7 and I am not sure if that is supported on Ubuntu 22.04, do you have an idea to solve my wifi problem? What motherboard does you 5090 laptop has? |
|
At first really want to thank you, this was the only way for me to get Ubuntu 22.04 for my rtx 5080 and x870 Aorus motherboard working. I will tell you how I solved my wifi problem, as my motherboard has wifi 7 I needed a newer kernel, as ubuntu 22.04.5 only goes up to kernel 6.8, so there is this link that I found https://ubuntuhandbook.org/index.php/2023/08/install-latest-kernel-new-repository/ which is Zabbly Kernel which this person is responsible for Stéphane Graber, and what I did is that in cubic I installed this Zabbly 6.18 kernel, however when I first started it up for the first time I had no wifi in the Zabbly 6.18 and could not install git somehow, then switched back to the 6.8 kernel where I installed this specific commands in the 6.8 kernel, these commands were for my specific motherboard x870, and after these were installed I went back to my 6.18 kernel and then because I installed this below the 6.18 kernel worked with all the commands, I still do not know how why git install somehow worked again and why my wifi problem was fixed and now I can do everything ##HERE HOW TO SOLVE MY MOTHERBOARD PROBLEMS sudo apt install git HERE ARE MY CUBIC INSTALLATION INSTRUCTIONS Inside Cubic (root): 1️⃣ Add Key 2️⃣ Add Repo (Jammy Version) 3️⃣ Update 4️⃣ Install Latest Kernel (6.18) Or install specific version like: apt install linux-image-6.18.3-zabbly+ linux-headers-6.18.3-zabbly+ 5️⃣ Install NVIDIA 580-open 6️⃣ Install rtw89 7️⃣ Rebuild DKMS You want NVIDIA + rtw89 built for 6.18.x. If you have any questions just ask me, hope this helps |
|
Hello, thank you so much for sharing the nice solution. |
Uh oh!
There was an error while loading. Please reload this page.
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
New issue*
If you followed the tutorial, downloaded the recommended driver installer from nvidia website and the system still cannot sees the 5090 graphics card, it's likely because the installed driver is the proprietary version instead of open-source version (RTX 5090 requires the open-source kernel modules).
Solution:
Purge all NVIDIA drivers
sudo apt purge nvidia-* libnvidia-*
sudo apt autoremove
sudo apt autoclean
Install the open kernel module version (By 2026 Jan, the latest driver version is 580)
sudo apt update
sudo apt install nvidia-driver-580-open
Reboot
sudo reboot
All reactions