netw0rk
(Marian Stancik)
November 18, 2025, 1:28pm
1
Hi guys,
I have read that the X11 was completely replaced by Wayland technology.
I have recently upgraded to F43 Workstation, however, I cannot get my two LG UltraWide Monitors expecting 2560x1080 to work.
I have old Nvidia GeForce GTX 750 Ti which provided this resolution on F42. But on F43, I get only 1920x1080 (which sucks to look at big times!!!)
It is possible that the removal of X11 support collides with my NVidia and Drivers (up to date) to get the 2560x1080 resolution?
Thanks for any tips.
M.
Marian Stancik:
I have old Nvidia GeForce GTX 750 Ti which provided this resolution on F42. But on F43, I get only 1920x1080 (which sucks to look at big times!!!)
It is possible that the removal of X11 support collides with my NVidia and Drivers (up to date) to get the 2560x1080 resolution?
Possibly.
The newer driver may have issues with that older gpu. If using the nvidia driver and if it is necessary that you use the nvidia 470xx driver then almost certain since the older 470xx nvidia driver only supports X11 and does not support wayland properly.
You may have better results removing the nvidia driver and using nouveau instead, though I don’t have a clue how nouveau works with the ultra wide monitors.
netw0rk
(Marian Stancik)
November 19, 2025, 5:14pm
4
Jeff V:
nouveau
Thank you @computersavvy for this tip. I will research on this option. Cause everything else I have tried by now fails..
netw0rk
(Marian Stancik)
November 19, 2025, 5:32pm
5
@anothermindbomb thanks for pointing out this discussion to me.
1 Like
netw0rk
(Marian Stancik)
November 30, 2025, 6:42pm
6
finally found the time to fix this!
see: Reddit - The heart of the internet
this worked for me!
# check driver version
nvidia-smi
! confirmed: I have buggy `driver`
* NVIDIA-SMI 580.105.08
* Driver Version: 580.105.08
* CUDA Version: 13.0
# remove all drivers cleanly
sudo dnf remove \*nvidia\* --exclude nvidia-gpu-firmware
# ensure repo is active
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
sudo dnf install https://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-$(rpm -E %fedora).noarch.rpm
# install version `580.95.05`
sudo dnf install \
akmod-nvidia-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-libs-3:580.95.05-1.fc43 \
nvidia-settings-3:580.95.05-1.fc43 \
nvidia-persistenced-3:580.95.05-1.fc43 \
nvidia-modprobe-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-power-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-cuda-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-cuda-libs-3:580.95.05-1.fc43 \
xorg-x11-drv-nvidia-kmodsrc-3:580.95.05-1.fc43
# reboot
sudo reboot