While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Nexus Mods retire their in-development cross-platform app to focus back on Vortex
- Canonical call for testing their Steam gaming Snap for Arm Linux
- Windows compatibility layer Wine 11 arrives bringing masses of improvements to Linux
- GOG plan to look a bit closer at Linux through 2026
- European Commission gathering feedback on the importance of open source
- > See more over 30 days here
- Weekend Players' Club 2026-01-16
- Xpander - Venting about open source security.
- LoudTechie - Welcome back to the GamingOnLinux Forum
- simplyseven - A New Game Screenshots Thread
- JohnLambrechts - Will you buy the new Steam Machine?
- mr-victory - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
ERROR: ld.so: object '/home/cooper/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.>>> Adding process 6003 for game ID 289070
ERROR: ld.so: object '/home/cooper/.local/share/Steam/ubuntu12_32/gameoverlayrenderer.so' from LD_PRELOAD cannot be preloaded (wrong ELF class: ELFCLASS32): ignored.
/home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6: /usr/lib/libcrypto.so.1.0.0: no version information available (required by /home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6)
/home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6: /usr/lib/libldap_r-2.4.so.2: no version information available (required by /home/cooper/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4)
/home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6: /usr/lib/liblber-2.4.so.2: no version information available (required by /home/cooper/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/lib/x86_64-linux-gnu/libcurl-gnutls.so.4)
/home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6: Symbol `_ZTVN10__cxxabiv120__si_class_type_infoE' has different size in shared object, consider re-linking
/home/cooper/.local/share/Steam/steamapps/common/Sid Meier's Civilization VI/./Civ6: Symbol `_ZTVN10__cxxabiv117__class_type_infoE' has different size in shared object, consider re-linking
>>> Adding process 6004 for game ID 289070
Game removed: AppID 289070 "Sid Meier's Civilization VI", ProcID 6003
No cached sticky mapping in ActivateActionSet.
I've installed all missing libraries, used export __GLVND_DISALLOW_PATCHING=1, tried native and runtime, all just spit back the same error message. The strange thing is when I ran KDE, it worked find but as soon as I switched over to i3, it doesn't work.
Excited to get it running though :D
I tried running it with steam-runtime enabled and still wouldn't launch.
Civ6 is the only issue though. Ark and Mount and Blade run fine.
Carl
UPDATE: This worked for me: either steam-native --reset or steam --reset (I did steam-native and it worked, so I didn't bother with steam --reset). From what I read, the error message isn't really the issue. It's actually still showing in my log even though the game is working now. Give it a try and let me know how it works for you.
UPDATE: I closed steam for a few hours and now civ6 stopped working again? :huh:. Is there anything else I can try?
I'll check again in a few hours to see if it stops working again.
* GTS (Google That S*) ;)
* Look at the files in /tmp/dumps (Some of the game/Steam logs)
*
rm -rf /tmp/dumpskind of reset the state without rebooting. Always worth a shot..*
ls -latr /tmpsee what else was put in /tmp (newest is at bottom of list, remove the other relevant Steam/game temp files)* If you're more comfortable with rm, just do that.
* Also, no need for sudo on your own files in /tmp
*
find . -readable -cmin -$MINUTES* run this from $HOME, I put it in $HOME/bin, which is in my $PATH so that I can use it on demand (
getrecentfiles(speaking of lazy devs.. using tab completion here/no upper-case, lol)* For example,
find . -readable -cmin -5would give you all the files changed in the past 5 min (helpful when digging for logs, or config files)* Create an archive of the config file, use the above example to find the config files, if it's a Unity3D game check out the folder $HOME/.config/unity3d
* Move the archive somewhere else ($HOME/bak) and remove the local config file.
* Relaunch the game
* If there are errors, then get Steam to "verify local files"
* If needed, unpack the tar.gz file back in place. If the game works fine for, say, a week or so feel free to remove it
* Look at the libraries the game ELF is linked to. For security, recommend using
objdumpinstead of ldd* In the steamapps/common/game find the executable (
ls -alFgives you a star on the file name to make them easy to spot*
objdump -p game_executable | grep -i needmake sure all the libraries point to SOMEthing* see if they are linked to 32bit (such as /usr/lib32) or 64bit (/usr/lib or similar)
* If you have a lot of free time, look for a tutorial on debugging using strace & friends, it can be daunting but it is effective. Make sure you redirect the output to a file for easy grep/file view access.
I disable core dumps, so it's always just text files for me..
I just switched to Gnome3 from I3 and now it runs fine :huh: Well just glad to get it running. Thanks for the help and glad to get it running!!