Getting steam running on Slackware64 15.0
by inukaze from LinuxQuestions.org on (#6K0J9)
HI there i had some troubles when i try to run steam.
But for reduce the mayor part of things i had do, i use the follow commands on terminal :
1 - Slackpkg+
i enable slackpkg+ and enable multilib repository
i download packages from this url
Code:https://slackware.nl/slackpkgplus15/pkg/After i go to my docs for Slackware64 14.2, on Spanish [my native language is Spanish]
Index -> https://docs.google.com/document/d/1...it?usp=sharing
My own Slackpkg tutorial -> https://docs.google.com/document/d/1...it?usp=sharing
2 - System Update & Upgrade :
Code:sudo su
slackpkg update gpg ; slackpkg update ; slackpkg upgrade-all3 - Slpkg : i had install slpkg the extra-official package manager for slackware
Code:slackpkg install python3 python-urllib3 python-setuptools
export SLPKG='slpkg-3.4.3-x86_64-1_dsw.txz' ; wget -c https://sourceforge.net/projects/slpkg/files/binary/"$SLPKG"/download -O "$SLPKG" ; installpkg "$SLPKG" ; ldconfig
ln -s /usr/bin/slpkg /usr/sbin/slpkg
slackpkg install python2 python2-module-collection
slpkg update
slpkg -s sbo python2-pythondialog
slpkg repo-enableThe working repositories from my home are :
Quote:
but i not use "slackl" repository because i don't know if just work with Slackware64-current or Slackware-current. because every package i try to install from there, never work for me.
after i solve missing dependencies for slpkg :
Code:slpkg -s slonly SQLAlchemy python3-pythondialog
slpkg -s sbo python3-progress-1.6 python3-buildwell i need the tool "convertpkg-compat32" that is from the package "compat32-tools"
Code:slpkg -s multi compat32-tools4 - Solve deps for Steam :
Code:slpkg -s slack --reinstall gdb gdbm ; \
slpkg -s slonly --reinstall cgdb zenity ; ldconfig32 Bits common libraries ( i am thinking i need some more packages but i don't know specific packages i need )
Code:echo -ne 'y\n' | slpkg -s multi --reinstall aaa_glibc-solibs glibc glibc-i18n glibc-profile libdrm-compat32 libX11-compat32 libXext-compat32 libxcb-compat32 libXau-compat32 llvm-compat32 sdl-compat32 libXtst-compat32 libXfixes-compat32 libXrandr-compat32 libXrender-compat32 libXi-compat32 glib2-compat32 gtk+2-compat32 pipewire-compat32 pulseaudio-compat32 gdk-pixbuf2-compat32 libva-compat32 libvdpau-compat32 bzip2-compat32 libglvnd-compat32 aaa_libraries-compat32 util-linux-compat32 libXinerama-compat32 libXcursor-compat32 pango-compat32 libXcomposite-compat32 libXdamage-compat32 atk-compat32 cairo-compat32 pango-compat32 harfbuzz-compat32 fontconfig-compat32 freetype-compat32 dbus-compat32 libXcursor-compat32 libsndfile-compat32 libasyncns-compat32 pixman-compat32 fribidi-compat32 graphite2-compat32 libxml2-compat32 brotli-compat32 elogind-compat32 flac-compat32 opus-compat32 e2fsprogs-compat32 curl-compat32 openssl-solibs-compat32 openssl-compat32 libunistring-compat32 cyrus-sasl-compat32 mesa-compat32 libXdmcp-compat32 ; ldconfigi know the packages
Quote:
are the necesary to run 32 Bits programs.
Quote:
are necesary to solve dependencies and if you want compile 32 Bits programs from 64 Bits installation. well with this i have some strange issues with old distros of 64 Bits when i make a CrossCompilation, the 32 bits native i had compile using that method does not work on a real 32 Bits env. because programs like "file" says are 32 Bits but from another thing not for x86 or x86_64, the strange was if you do the same from 64 Bits native reports is a 32 Bits native.
5 - Install steam :
Code:slpkg -s sbo steam ; ldconfig6 - Trying to run steam :
without runtime :
Code:STEAM_RUNTIME=0 LC_ALL=C steamOutput :
Quote:
7 - Solving "libnghttp2.so.14" 32 bits dependency :
Code:wget -c "https://mirror.cedia.org.ec/slackware/slackware-15.0/patches/packages/nghttp2-1.57.0-i586-1_slack15.0.txz"
convertpkg-compat32 -i nghttp2-1.57.0-i586-1_slack15.0.txz -o nghttp2-1.57.0-compat32-1_slack15.0.txz
installpkg /tmp/nghttp2-1.57.0-compat32-1_slack15.0.txz ; ldconfig
8 - Trying again :
Code:STEAM_RUNTIME=0 LC_ALL=C steamOutput
Quote:
appear the msgbox with the text :
Quote:
9 - Trying again but enable steam runtime :
Code:reset ; STEAM_RUNTIME=1 LC_ALL=C steamwell start a download of near 500MB (i am from venezuela, with a bad internet connection, this took near of 4 hours to download all)
Output [without download process]
Quote:
10 - Determining if vgui2_s.so had unsolve dependency :
Code:cd ~/.local/share/Steam/ubuntu12_32
inukaze@darkstar:~/.local/share/Steam/ubuntu12_32$ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:." ./steam-runtime/run.sh ldd vgui2_s.soQuote:
and well, i don't know which thing i need to make it run. on my job i apply the "quick n' dirty" method for multilib / compat32 from slack docs. and on my job steam works, but i want determine just the real packages need for getting steam run without problems.
11 - Well trying another things :
Code:find ~/.steam/root/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete ; \
find ~/.steam/root/ -name "libstdc++.so*" -print -delete ; \
find ~/.steam/root/ -name "libxcb.so*" -print -delete ; \
find ~/.steam/root/ -name "libgpg-error.so*" -print -delete
steamoutput
Quote:
12 - i had delete Steam file and start again :
Code:rm -rf "~/.steam/" ; \
rm -rf "$HOME/.local/share/Steam" ; \
steamand after all, the results are still the same.
Someone had another ideas for fix it.
But for reduce the mayor part of things i had do, i use the follow commands on terminal :
1 - Slackpkg+
i enable slackpkg+ and enable multilib repository
i download packages from this url
Code:https://slackware.nl/slackpkgplus15/pkg/After i go to my docs for Slackware64 14.2, on Spanish [my native language is Spanish]
Index -> https://docs.google.com/document/d/1...it?usp=sharing
My own Slackpkg tutorial -> https://docs.google.com/document/d/1...it?usp=sharing
2 - System Update & Upgrade :
Code:sudo su
slackpkg update gpg ; slackpkg update ; slackpkg upgrade-all3 - Slpkg : i had install slpkg the extra-official package manager for slackware
Code:slackpkg install python3 python-urllib3 python-setuptools
export SLPKG='slpkg-3.4.3-x86_64-1_dsw.txz' ; wget -c https://sourceforge.net/projects/slpkg/files/binary/"$SLPKG"/download -O "$SLPKG" ; installpkg "$SLPKG" ; ldconfig
ln -s /usr/bin/slpkg /usr/sbin/slpkg
slackpkg install python2 python2-module-collection
slpkg update
slpkg -s sbo python2-pythondialog
slpkg repo-enableThe working repositories from my home are :
Quote:
slack sbo alien slonly ktown{latest} multi salix rested msb{1.18} csb connos |
after i solve missing dependencies for slpkg :
Code:slpkg -s slonly SQLAlchemy python3-pythondialog
slpkg -s sbo python3-progress-1.6 python3-buildwell i need the tool "convertpkg-compat32" that is from the package "compat32-tools"
Code:slpkg -s multi compat32-tools4 - Solve deps for Steam :
Code:slpkg -s slack --reinstall gdb gdbm ; \
slpkg -s slonly --reinstall cgdb zenity ; ldconfig32 Bits common libraries ( i am thinking i need some more packages but i don't know specific packages i need )
Code:echo -ne 'y\n' | slpkg -s multi --reinstall aaa_glibc-solibs glibc glibc-i18n glibc-profile libdrm-compat32 libX11-compat32 libXext-compat32 libxcb-compat32 libXau-compat32 llvm-compat32 sdl-compat32 libXtst-compat32 libXfixes-compat32 libXrandr-compat32 libXrender-compat32 libXi-compat32 glib2-compat32 gtk+2-compat32 pipewire-compat32 pulseaudio-compat32 gdk-pixbuf2-compat32 libva-compat32 libvdpau-compat32 bzip2-compat32 libglvnd-compat32 aaa_libraries-compat32 util-linux-compat32 libXinerama-compat32 libXcursor-compat32 pango-compat32 libXcomposite-compat32 libXdamage-compat32 atk-compat32 cairo-compat32 pango-compat32 harfbuzz-compat32 fontconfig-compat32 freetype-compat32 dbus-compat32 libXcursor-compat32 libsndfile-compat32 libasyncns-compat32 pixman-compat32 fribidi-compat32 graphite2-compat32 libxml2-compat32 brotli-compat32 elogind-compat32 flac-compat32 opus-compat32 e2fsprogs-compat32 curl-compat32 openssl-solibs-compat32 openssl-compat32 libunistring-compat32 cyrus-sasl-compat32 mesa-compat32 libXdmcp-compat32 ; ldconfigi know the packages
Quote:
slpkg -s multi aaa_glibc-solibs glibc glibc-i18n glibc-profile glibc-solibs |
Quote:
slpkg -s multi gcc gcc-brig gcc-g++ gcc-gdc gcc-gfortran gcc-gnat gcc-go gcc-objc |
5 - Install steam :
Code:slpkg -s sbo steam ; ldconfig6 - Trying to run steam :
without runtime :
Code:STEAM_RUNTIME=0 LC_ALL=C steamOutput :
Quote:
Couldn't import apt, please install python3-apt or update steamdeps for your distribution. Actually, don't worry - this is Slackware! steam.sh[10675]: Running Steam on slackware 15.0 64-bit steam.sh[10675]: STEAM_RUNTIME is disabled by the user steam.sh[10675]: Can't find 'steam-runtime-check-requirements', continuing anyway tid(10757) burning pthread_key_t == 0 so we never use it [2024-02-29 18:53:14] Startup - updater built Feb 29 2024 00:39:10 [2024-02-29 18:53:14] Startup - Steam Client launched with: '/home/inukaze/.local/share/Steam/ubuntu12_32/steam' 02/29 18:53:14 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(10757) Looks like steam didn't shutdown cleanly, scheduling immediate update check [2024-02-29 18:53:14] Loading cached metrics from disk (/home/inukaze/.local/share/Steam/package/steam_client_metrics.bin) [2024-02-29 18:53:14] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2024-02-29 18:53:14] Using the following download hosts for Public, Realm steamglobal [2024-02-29 18:53:14] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2024-02-29 18:53:14] Checking for update on startup [2024-02-29 18:53:14] Checking for available updates... [2024-02-29 18:53:14] Downloading manifest: https://cdn.steamstatic.com/client/s...lient_ubuntu12 [2024-02-29 18:53:14] Manifest download: send request [2024-02-29 18:53:14] Manifest download: waiting for download to finish [2024-02-29 18:53:14] Manifest download: finished [2024-02-29 18:53:14] Download skipped: /client/steam_client_ubuntu12 version 1709168962, installed version 1709168962, existing pending version 0 [2024-02-29 18:53:14] Nothing to do [2024-02-29 18:53:14] Verifying installation... [2024-02-29 18:53:14] Performing checksum verification of executable files [2024-02-29 18:53:16] Verification complete UpdateUI: skip show logo Steam logging initialized: directory: /home/inukaze/.local/share/Steam/logs src/steamUI/Main.cpp (2242) : !"Fatal Error: Could not load module 'bin/vgui2_s.dll'" src/steamUI/Main.cpp (2242) : !"Fatal Error: Could not load module 'bin/vgui2_s.dll'" 02/29 18:53:17 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(10757) Error: For more information visit https://support.steampowered.com/kb_...9205-OZVN-0660 Using host zenity for message [2024-02-29 18:53:17] Shutdown assert_20240229185317_7.dmp[10766]: Uploading dump (out-of-process) /tmp/dumps/assert_20240229185317_7.dmp assert_20240229185317_7.dmp[10766]: Finished uploading minidump (out-of-process): success = no assert_20240229185317_7.dmp[10766]: error: libnghttp2.so.14: cannot open shared object file: No such file or directory assert_20240229185317_7.dmp[10766]: file ''/tmp/dumps/assert_20240229185317_7.dmp'', upload no: ''libnghttp2.so.14: cannot open shared object file: No such file or director |
7 - Solving "libnghttp2.so.14" 32 bits dependency :
Code:wget -c "https://mirror.cedia.org.ec/slackware/slackware-15.0/patches/packages/nghttp2-1.57.0-i586-1_slack15.0.txz"
convertpkg-compat32 -i nghttp2-1.57.0-i586-1_slack15.0.txz -o nghttp2-1.57.0-compat32-1_slack15.0.txz
installpkg /tmp/nghttp2-1.57.0-compat32-1_slack15.0.txz ; ldconfig
8 - Trying again :
Code:STEAM_RUNTIME=0 LC_ALL=C steamOutput
Quote:
Couldn't import apt, please install python3-apt or update steamdeps for your distribution. Actually, don't worry - this is Slackware! steam.sh[11423]: Running Steam on slackware 15.0 64-bit steam.sh[11423]: STEAM_RUNTIME is disabled by the user steam.sh[11423]: Can't find 'steam-runtime-check-requirements', continuing anyway tid(11505) burning pthread_key_t == 0 so we never use it [2024-02-29 19:13:58] Startup - updater built Feb 29 2024 00:39:10 [2024-02-29 19:13:58] Startup - Steam Client launched with: '/home/inukaze/.local/share/Steam/ubuntu12_32/steam' 02/29 19:13:58 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(11505) Looks like steam didn't shutdown cleanly, scheduling immediate update check [2024-02-29 19:13:58] Loading cached metrics from disk (/home/inukaze/.local/share/Steam/package/steam_client_metrics.bin) [2024-02-29 19:13:58] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2024-02-29 19:13:58] Using the following download hosts for Public, Realm steamglobal [2024-02-29 19:13:58] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2024-02-29 19:13:58] Checking for update on startup [2024-02-29 19:13:58] Checking for available updates... [2024-02-29 19:13:58] Downloading manifest: https://cdn.steamstatic.com/client/s...lient_ubuntu12 [2024-02-29 19:13:58] Manifest download: send request [2024-02-29 19:13:58] Manifest download: waiting for download to finish [2024-02-29 19:13:59] Manifest download: finished [2024-02-29 19:13:59] Download skipped: /client/steam_client_ubuntu12 version 1709168962, installed version 1709168962, existing pending version 0 [2024-02-29 19:13:59] Nothing to do [2024-02-29 19:13:59] Verifying installation... [2024-02-29 19:13:59] Performing checksum verification of executable files [2024-02-29 19:14:00] Verification complete UpdateUI: skip show logo Steam logging initialized: directory: /home/inukaze/.local/share/Steam/logs src/steamUI/Main.cpp (2242) : !"Fatal Error: Could not load module 'bin/vgui2_s.dll'" src/steamUI/Main.cpp (2242) : !"Fatal Error: Could not load module 'bin/vgui2_s.dll'" 02/29 19:14:01 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(11505) Error: For more information visit https://support.steampowered.com/kb_...9205-OZVN-0660 Using host zenity for message assert_20240229191401_7.dmp[11517]: Uploading dump (out-of-process) /tmp/dumps/assert_20240229191401_7.dmp [2024-02-29 19:14:01] Shutdown inukaze@darkstar:~$ assert_20240229191401_7.dmp[11517]: Finished uploading minidump (out-of-process): success = yes assert_20240229191401_7.dmp[11517]: response: CrashID=bp-d8b9a2a6-0688-4ecb-9837-8fd652240229 assert_20240229191401_7.dmp[11517]: file ''/tmp/dumps/assert_20240229191401_7.dmp'', upload yes: ''CrashID=bp-d8b9a2a6-0688-4ecb-9837-8fd652240229'' |
Quote:
steam : Could not load module 'vgui2_s.so' https://support.steampowered.com/kb_...9205-OZVN-0660 |
Code:reset ; STEAM_RUNTIME=1 LC_ALL=C steamwell start a download of near 500MB (i am from venezuela, with a bad internet connection, this took near of 4 hours to download all)
Output [without download process]
Quote:
Couldn't import apt, please install python3-apt or update steamdeps for your distribution. Actually, don't worry - this is Slackware! steam.sh[12232]: Running Steam on slackware 15.0 64-bit steam.sh[12232]: STEAM_RUNTIME is enabled by the user setup.sh[12301]: Steam runtime environment up-to-date! steam.sh[12232]: Steam client's requirements are satisfied tid(12368) burning pthread_key_t == 0 so we never use it [2024-02-29 19:24:33] Startup - updater built Feb 29 2024 00:39:10 [2024-02-29 19:24:33] Startup - Steam Client launched with: '/home/inukaze/.local/share/Steam/ubuntu12_32/steam' 02/29 19:24:33 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(12368) Looks like steam didn't shutdown cleanly, scheduling immediate update check [2024-02-29 19:24:33] Loading cached metrics from disk (/home/inukaze/.local/share/Steam/package/steam_client_metrics.bin) [2024-02-29 19:24:33] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2024-02-29 19:24:33] Using the following download hosts for Public, Realm steamglobal [2024-02-29 19:24:33] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2024-02-29 19:24:33] Checking for update on startup [2024-02-29 19:24:33] Checking for available updates... [2024-02-29 19:24:33] Downloading manifest: https://cdn.steamstatic.com/client/s...lient_ubuntu12 Couldn't import apt, please install python3-apt or update steamdeps for your distribution. Actually, don't worry - this is Slackware! steam.sh[13386]: Running Steam on slackware 15.0 64-bit steam.sh[13386]: STEAM_RUNTIME is enabled by the user setup.sh[13455]: Steam runtime environment up-to-date! steam.sh[13386]: Steam client's requirements are satisfied tid(13528) burning pthread_key_t == 0 so we never use it [2024-02-29 20:08:18] Startup - updater built Feb 29 2024 00:39:10 [2024-02-29 20:08:18] Startup - Steam Client launched with: '/home/inukaze/.local/share/Steam/ubuntu12_32/steam' 02/29 20:08:18 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(13528) Looks like steam didn't shutdown cleanly, scheduling immediate update check [2024-02-29 20:08:18] Loading cached metrics from disk (/home/inukaze/.local/share/Steam/package/steam_client_metrics.bin) [2024-02-29 20:08:18] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2024-02-29 20:08:18] Using the following download hosts for Public, Realm steamglobal [2024-02-29 20:08:18] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2024-02-29 20:08:18] Checking for update on startup [2024-02-29 20:08:18] Checking for available updates... [2024-02-29 20:08:18] Downloading manifest: https://cdn.steamstatic.com/client/s...lient_ubuntu12 [2024-02-29 20:08:18] Manifest download: send request [2024-02-29 20:08:18] Manifest download: waiting for download to finish [2024-02-29 20:08:19] Manifest download: finished [2024-02-29 20:08:19] Download skipped: /client/steam_client_ubuntu12 version 1709168962, installed version 1709168962, existing pending version 0 [2024-02-29 20:08:19] Nothing to do [2024-02-29 20:08:19] Verifying installation... [2024-02-29 20:08:19] Performing checksum verification of executable files [2024-02-29 20:08:22] Verification complete UpdateUI: skip show logo Steam logging initialized: directory: /home/inukaze/.local/share/Steam/logs XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xf611ba50 XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xf611a0f0 steamwebhelper.sh[13538]: === Thu Feb 29 20:08:23 -04 2024 === steamwebhelper.sh[13538]: Starting steamwebhelper under bootstrap sniper steam runtime at /home/inukaze/.local/share/Steam/ubuntu12_64/steam-runtime-sniper glXChooseVisual failed glXChooseVisual failedsrc/steamUI/spewmanager.cpp (184) : Assertion Failed: Error: glXChooseVisual failed src/steamUI/spewmanager.cpp (184) : Assertion Failed: Error: glXChooseVisual failed 02/29 20:08:24 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(13528) assert_20240229200824_8.dmp[13566]: Uploading dump (out-of-process) /tmp/dumps/assert_20240229200824_8.dmp crash_20240229200824_9.dmp[13570]: Uploading dump (out-of-process) /tmp/dumps/crash_20240229200824_9.dmp /home/inukaze/.local/share/Steam/steam.sh: line 813: 13528 Segmentation fault "$STEAMROOT/$STEAMEXEPATH" "$@" inukaze@darkstar:~/.local/share/Steam/ubuntu12_32$ assert_20240229200824_8.dmp[13566]: Finished uploading minidump (out-of-process): success = yes assert_20240229200824_8.dmp[13566]: response: CrashID=bp-5039375f-b1e4-4169-bf88-7fedb2240229 assert_20240229200824_8.dmp[13566]: file ''/tmp/dumps/assert_20240229200824_8.dmp'', upload yes: ''CrashID=bp-5039375f-b1e4-4169-bf88-7fedb2240229'' crash_20240229200824_9.dmp[13570]: Finished uploading minidump (out-of-process): success = yes crash_20240229200824_9.dmp[13570]: response: CrashID=bp-082006d9-0073-40cd-86db-aa9f82240229 crash_20240229200824_9.dmp[13570]: file ''/tmp/dumps/crash_20240229200824_9.dmp'', upload yes: ''CrashID=bp-082006d9-0073-40cd-86db-aa9f82240229'' inukaze@darkstar:~/.local/share/Steam/ubuntu12_32$ |
Code:cd ~/.local/share/Steam/ubuntu12_32
inukaze@darkstar:~/.local/share/Steam/ubuntu12_32$ LD_LIBRARY_PATH="$LD_LIBRARY_PATH:." ./steam-runtime/run.sh ldd vgui2_s.soQuote:
linux-gate.so.1 (0xf7f5a000) libdl.so.2 => /lib/libdl.so.2 (0xf7e07000) librt.so.1 => /lib/librt.so.1 (0xf7dfc000) /lib/ld-linux.so.2 (0xf7f5c000) libtier0_s.so (0xf7da3000) libvstdlib_s.so (0xf7cc4000) libX11.so.6 => /usr/lib/libX11.so.6 (0xf7b7b000) libXi.so.6 => /usr/lib/libXi.so.6 (0xf7b67000) libXrandr.so.2 => /usr/lib/libXrandr.so.2 (0xf7b59000) libXext.so.6 => /usr/lib/libXext.so.6 (0xf7b42000) libXrender.so.1 => /usr/lib/libXrender.so.1 (0xf7b34000) libGL.so.1 => /usr/lib/libGL.so.1 (0xf7ac1000) libfontconfig.so.1 => /usr/lib/libfontconfig.so.1 (0xf7a77000) libfreetype.so.6 => /usr/lib/libfreetype.so.6 (0xf79b3000) libgtk-x11-2.0.so.0 => /home/inukaze/.local/share/Steam/ubuntu12_32/steam-runtime/pinned_libs_32/libgtk-x11-2.0.so.0 (0xf754b000) libglib-2.0.so.0 => /usr/lib/libglib-2.0.so.0 (0xf740d000) libopenal.so.1 => /home/inukaze/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libopenal.so.1 (0xf739f000) libXinerama.so.1 => /usr/lib/libXinerama.so.1 (0xf739a000) libSM.so.6 => /home/inukaze/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libSM.so.6 (0xf7391000) libICE.so.6 => /home/inukaze/.local/share/Steam/ubuntu12_32/steam-runtime/usr/lib/i386-linux-gnu/libICE.so.6 (0xf7375000) libXtst.so.6 => /usr/lib/libXtst.so.6 (0xf736d000) libm.so.6 => /lib/libm.so.6 (0xf722d000) libpthread.so.0 => /lib/libpthread.so.0 (0xf720c000) libc.so.6 => /lib/libc.so.6 (0xf7040000) libxcb.so.1 => /usr/lib/libxcb.so.1 (0xf7014000) libGLX.so.0 => /usr/lib/libGLX.so.0 (0xf6fda000) libGLdispatch.so.0 => /usr/lib/libGLdispatch.so.0 (0xf6f5d000) libxml2.so.2 => /usr/lib/libxml2.so.2 (0xf6dea000) libbz2.so.1 => /lib/libbz2.so.1 (0xf6dd6000) libpng16.so.16 => /usr/lib/libpng16.so.16 (0xf6d99000) libz.so.1 => /lib/libz.so.1 (0xf6d7e000) libharfbuzz.so.0 => /usr/lib/libharfbuzz.so.0 (0xf6c73000) libbrotlidec.so.1 => /usr/lib/libbrotlidec.so.1 (0xf6c65000) libgdk-x11-2.0.so.0 => /usr/lib/libgdk-x11-2.0.so.0 (0xf6bad000) libpangocairo-1.0.so.0 => /usr/lib/libpangocairo-1.0.so.0 (0xf6b9d000) libXfixes.so.3 => /usr/lib/libXfixes.so.3 (0xf6b96000) libatk-1.0.so.0 => /usr/lib/libatk-1.0.so.0 (0xf6b6e000) libcairo.so.2 => /usr/lib/libcairo.so.2 (0xf6a22000) libgdk_pixbuf-2.0.so.0 => /usr/lib/libgdk_pixbuf-2.0.so.0 (0xf69f1000) libgio-2.0.so.0 => /usr/lib/libgio-2.0.so.0 (0xf680c000) libpangoft2-1.0.so.0 => /usr/lib/libpangoft2-1.0.so.0 (0xf67f1000) libpango-1.0.so.0 => /usr/lib/libpango-1.0.so.0 (0xf679e000) libgobject-2.0.so.0 => /usr/lib/libgobject-2.0.so.0 (0xf6745000) libpcre.so.1 => /lib/libpcre.so.1 (0xf66cb000) libuuid.so.1 => /lib/libuuid.so.1 (0xf66c2000) libXau.so.6 => /usr/lib/libXau.so.6 (0xf66bc000) libXdmcp.so.6 => /usr/lib/libXdmcp.so.6 (0xf66b5000) liblzma.so.5 => /lib/liblzma.so.5 (0xf6689000) libgraphite2.so.3 => /usr/lib/libgraphite2.so.3 (0xf6660000) libbrotlicommon.so.1 => /usr/lib/libbrotlicommon.so.1 (0xf663d000) libXcursor.so.1 => /usr/lib/libXcursor.so.1 (0xf662f000) libXcomposite.so.1 => /usr/lib/libXcomposite.so.1 (0xf662a000) libXdamage.so.1 => /usr/lib/libXdamage.so.1 (0xf6625000) libpixman-1.so.0 => /usr/lib/libpixman-1.so.0 (0xf6599000) libEGL.so.1 => /usr/lib/libEGL.so.1 (0xf6582000) libxcb-shm.so.0 => /usr/lib/libxcb-shm.so.0 (0xf657d000) libxcb-render.so.0 => /usr/lib/libxcb-render.so.0 (0xf656d000) libgmodule-2.0.so.0 => /usr/lib/libgmodule-2.0.so.0 (0xf6567000) libjpeg.so.62 => /usr/lib/libjpeg.so.62 (0xf64cd000) libmount.so.1 => /lib/libmount.so.1 (0xf646d000) libresolv.so.2 => /lib/libresolv.so.2 (0xf6450000) libfribidi.so.0 => /usr/lib/libfribidi.so.0 (0xf6431000) libffi.so.7 => /usr/lib/libffi.so.7 (0xf6426000) libblkid.so.1 => /lib/libblkid.so.1 (0xf63cf000) |
11 - Well trying another things :
Code:find ~/.steam/root/ \( -name "libgcc_s.so*" -o -name "libstdc++.so*" -o -name "libxcb.so*" \) -print -delete ; \
find ~/.steam/root/ -name "libstdc++.so*" -print -delete ; \
find ~/.steam/root/ -name "libxcb.so*" -print -delete ; \
find ~/.steam/root/ -name "libgpg-error.so*" -print -delete
steamoutput
Quote:
Couldn't import apt, please install python3-apt or update steamdeps for your distribution. Actually, don't worry - this is Slackware! steam.sh[13903]: Running Steam on slackware 15.0 64-bit steam.sh[13903]: STEAM_RUNTIME is enabled automatically setup.sh[13978]: Steam runtime environment up-to-date! steam.sh[13903]: Steam client's requirements are satisfied tid(14047) burning pthread_key_t == 0 so we never use it [2024-02-29 20:16:37] Startup - updater built Feb 29 2024 00:39:10 [2024-02-29 20:16:37] Startup - Steam Client launched with: '/home/inukaze/.local/share/Steam/ubuntu12_32/steam' 02/29 20:16:37 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(14047) Looks like steam didn't shutdown cleanly, scheduling immediate update check [2024-02-29 20:16:37] Loading cached metrics from disk (/home/inukaze/.local/share/Steam/package/steam_client_metrics.bin) [2024-02-29 20:16:37] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults [2024-02-29 20:16:37] Using the following download hosts for Public, Realm steamglobal [2024-02-29 20:16:37] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in' [2024-02-29 20:16:37] Checking for update on startup [2024-02-29 20:16:37] Checking for available updates... [2024-02-29 20:16:37] Downloading manifest: https://cdn.steamstatic.com/client/s...lient_ubuntu12 [2024-02-29 20:16:37] Manifest download: send request [2024-02-29 20:16:37] Manifest download: waiting for download to finish [2024-02-29 20:16:39] Manifest download: finished [2024-02-29 20:16:39] Download skipped: /client/steam_client_ubuntu12 version 1709168962, installed version 1709168962, existing pending version 0 [2024-02-29 20:16:39] Nothing to do [2024-02-29 20:16:39] Verifying installation... [2024-02-29 20:16:39] Performing checksum verification of executable files [2024-02-29 20:16:41] Verification complete UpdateUI: skip show logo Steam logging initialized: directory: /home/inukaze/.local/share/Steam/logs XRRGetOutputInfo Workaround: initialized with override: 0 real: 0xf6130a50 XRRGetCrtcInfo Workaround: initialized with override: 0 real: 0xf612f0f0 steamwebhelper.sh[14055]: === jue 29 feb 2024 20:16:43 -04 === steamwebhelper.sh[14055]: Starting steamwebhelper under bootstrap sniper steam runtime at /home/inukaze/.local/share/Steam/ubuntu12_64/steam-runtime-sniper glXChooseVisual failed glXChooseVisual failedsrc/steamUI/spewmanager.cpp (184) : Assertion Failed: Error: glXChooseVisual failed src/steamUI/spewmanager.cpp (184) : Assertion Failed: Error: glXChooseVisual failed 02/29 20:16:43 Init: Installing breakpad exception handler for appid(steam)/version(1709168962)/tid(14047) assert_20240229201643_8.dmp[14091]: Uploading dump (out-of-process) /tmp/dumps/assert_20240229201643_8.dmp crash_20240229201643_9.dmp[14120]: Uploading dump (out-of-process) /tmp/dumps/crash_20240229201643_9.dmp /home/inukaze/.local/share/Steam/steam.sh: linea 813: 14047 Violaciin de segmento "$STEAMROOT/$STEAMEXEPATH" "$@" inukaze@darkstar:~/.local/share/Steam/ubuntu12_32$ assert_20240229201643_8.dmp[14091]: Finished uploading minidump (out-of-process): success = yes assert_20240229201643_8.dmp[14091]: response: CrashID=bp-caf7445a-3a77-47f4-84c7-2f9b62240229 assert_20240229201643_8.dmp[14091]: file ''/tmp/dumps/assert_20240229201643_8.dmp'', upload yes: ''CrashID=bp-caf7445a-3a77-47f4-84c7-2f9b62240229'' |
Code:rm -rf "~/.steam/" ; \
rm -rf "$HOME/.local/share/Steam" ; \
steamand after all, the results are still the same.
Someone had another ideas for fix it.