this post was submitted on 08 May 2024
45 points (95.9% liked)
Linux Gaming
15257 readers
68 users here now
Discussions and news about gaming on the GNU/Linux family of operating systems (including the Steam Deck). Potentially a $HOME
away from home for disgruntled /r/linux_gaming denizens of the redditarian demesne.
This page can be subscribed to via RSS.
Original /r/linux_gaming pengwing by uoou.
Resources
WWW:
Discord:
IRC:
Matrix:
Telegram:
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I suggest avoiding the Vulkan build. It has been crashy in most BG3 releases, including the current one, I think.
For the dx11 build, you might get more help if you post your kernel and amdgpu firmware versions, GPU model, and screen shots showing the bad textures.
It's also worth browsing the Proton comments to see if anyone else has encountered the same problems.
I will rather skip the Vulkan version then, thank you. I will update the post with version information but how do I learn the amdgpu firmware versions please?
Since you're using Fedora Atomic, I'll give you instructions for
rpm-ostree
:Run
rpm-ostree status
and find the deployment with the dot to the left of it. Example output:First one has a dot next to it, which means it's the active version. Copy the value after "BaseCommit:" (in my case it is
2f8263a33190c4e1320233aebbdc8f337b0a6abcba371d4870ae43fba33aea62
)Run
rpm-ostree db list <paste commit hash here> | grep amd
. Example output (my command wasrpm-ostree db list 2f8263a33190c4e1320233aebbdc8f337b0a6abcba371d4870ae43fba33aea62 | grep amd
):In my case, running the most recent update on Fedora Atomic KDE, it looks like I'm running version 20240410-1 of
amd-gpu-firmware
. Yours may vary depending on what update you're on.nice write up, thank you!