box86 icon indicating copy to clipboard operation
box86 copied to clipboard

Steam installed via install_steam.sh script not working

Open AlphaCraft9658 opened this issue 1 year ago • 15 comments

I installed Steam via the install_steam.sh script in the root of this repository inside of a proot-distro Debian instance, which was shipped with Termux_XFCE. I made sure that binutils is installed, because the ar command has failed to run. Steam is installed, as it seems, and I tried running it with the steam and box64 steam commands, but I am getting this error, together with the rest of the output (this example is from running it with box64 manually):

Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 PageSize:4096 Running on Cortex-A510 Cortex-A710 - with 8 Cores
Will use Hardware counter measured at 19.2 MHz emulating 2.4 GHz
Params database has 80 entries
Box64 with Dynarec v0.2.9 cac43a1f built on Jul  3 2024 06:22:30
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 25 Env var
BOX64 LIB PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/:/lib/x86_64-linux-gnu/:/usr/lib/x86_64-linux-gnu/:/data/data/com.termux/files/usr/glibc/lib/x86_64-linux-gnu/
BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
Looking for steam
Apply RC params for steam
Applying BOX64_CRASHHANDLER=1
Applying BOX64_EMULATED_LIBS=libudev.so.0
Not an ELF file (sign=#!/b)
Error: Reading elf header of /usr/local/bin/steam, Try to launch natively instead
steam.sh[19913]: Running Steam on debian 12 64-bit
steam.sh[19913]: STEAM_RUNTIME is enabled by the user
setup.sh[19977]: Steam runtime environment up-to-date!
/home/alpha-craft/.local/share/Steam/ubuntu12_32/steam-runtime/run.sh: line 85: steam-runtime-identify-library-abi: command not found
run.sh[19993]: steam-runtime-identify-library-abi --ldconfig-paths failed, falling back to ldconfig
steam.sh[19913]: Can't find 'steam-runtime-check-requirements', continuing anyway
/home/alpha-craft/.local/share/Steam/steam.sh: line 792: /home/alpha-craft/.local/share/Steam/ubuntu12_32/steam: cannot execute: required file not found

I looked at some things but couldn't figure out what was going on. Am I doing something wrong or might this be a general issue/bug?

AlphaCraft9658 avatar Jul 03 '24 12:07 AlphaCraft9658

Are you using the BOX86_LOG=1 variable? if not I would do so as it will give you a more comprehensive log. Enable it by entering export BOX86_LOG=1

RyuRaiko avatar Jul 03 '24 21:07 RyuRaiko

Are you using the BOX86_LOG=1 variable? if not I would do so as it will give you a more comprehensive log. Enable it by entering export BOX86_LOG=1

I wasn't using that, but setting this environment variable doesn't seem to have changed the output.

AlphaCraft9658 avatar Jul 04 '24 07:07 AlphaCraft9658

Are you using the BOX86_LOG=1 variable? if not I would do so as it will give you a more comprehensive log. Enable it by entering export BOX86_LOG=1

I tried tracing which commands and scripts are executed in which way when running the "steam" command, and I found the actual steam binary, which is started in the end. When executing it directly, I get the same error, that the required file is not found. Is that a potential architecture conflict here? Or what might be broken in this case? I read that a similar error happens when trying to run a DOS script in bash, which can be converted, but that's not the case here.

AlphaCraft9658 avatar Jul 05 '24 07:07 AlphaCraft9658

Are you using the BOX86_LOG=1 variable? if not I would do so as it will give you a more comprehensive log. Enable it by entering export BOX86_LOG=1

I tried tracing which commands and scripts are executed in which way when running the "steam" command, and I found the actual steam binary, which is started in the end. When executing it directly, I get the same error, that the required file is not found. Is that a potential architecture conflict here? Or what might be broken in this case? I read that a similar error happens when trying to run a DOS script in bash, which can be converted, but that's not the case here.

Apparently the scripts don't run steam with box64. Running the binary with box64 manually does start steam, but it immediately crashes, as steam needs to be online in order to update. How does steam not have an internet connection here? The script seems to be kinda broken.

AlphaCraft9658 avatar Jul 05 '24 07:07 AlphaCraft9658

steam is a 32bits process, so it will run with box86 (and then, steam will launch steamwebhelper, that is a 64bits process, and needs box64, so will need both to run steam).

file no found means that you either lack binfmt integration, or the armhf subsystem entirely

Read the COMPILE.md to see how to add armhf subsystem on Debian/Ubuntu type of OS. For anything else, you'll to google it. If you lack binfmt integration (it can happens with Termux), then you need to setup BOX64_BASH to point to a x86_64 version of bash (availabe in the tests folder of box64 repo) and launch the shell script with box64. box64 will then run the shell script with that bash, and launch any 64bits apps with box64 and x86 apps with box86 (as long as there are installed in the same folder). That should compensate for the lack of binfmt.

ptitSeb avatar Jul 05 '24 08:07 ptitSeb

steam is a 32bits process, so it will run with box86 (and then, steam will launch steamwebhelper, that is a 64bits process, and needs box64, so will need both to run steam).

file no found means that you either lack binfmt integration, or the armhf subsystem entirely

Read the COMPILE.md to see how to add armhf subsystem on Debian/Ubuntu type of OS. For anything else, you'll to google it. If you lack binfmt integration (it can happens with Termux), then you need to setup BOX64_BASH to point to a x86_64 version of bash (availabe in the tests folder of box64 repo) and launch the shell script with box64. box64 will then run the shell script with that bash, and launch any 64bits apps with box64 and x86 apps with box86 (as long as there are installed in the same folder). That should compensate for the lack of binfmt.

That should be the solution then. I have been warned by apt that binfmt doesn't work inside containers. I gotta do that then. I'll report back to you once I tried it and tell you whether it worked.

AlphaCraft9658 avatar Jul 05 '24 08:07 AlphaCraft9658

steam is a 32bits process, so it will run with box86 (and then, steam will launch steamwebhelper, that is a 64bits process, and needs box64, so will need both to run steam).

file no found means that you either lack binfmt integration, or the armhf subsystem entirely

Read the COMPILE.md to see how to add armhf subsystem on Debian/Ubuntu type of OS. For anything else, you'll to google it. If you lack binfmt integration (it can happens with Termux), then you need to setup BOX64_BASH to point to a x86_64 version of bash (availabe in the tests folder of box64 repo) and launch the shell script with box64. box64 will then run the shell script with that bash, and launch any 64bits apps with box64 and x86 apps with box86 (as long as there are installed in the same folder). That should compensate for the lack of binfmt.

I added the x86_64 version of bash and have also added the environment variable. In the logs I can see that it uses the x86_64 version of bash when running box64 steam, but it fails when trying to run srt-logger which also is an x86_64 binary?

AlphaCraft9658 avatar Jul 05 '24 08:07 AlphaCraft9658

steam is a 32bits process, so it will run with box86 (and then, steam will launch steamwebhelper, that is a 64bits process, and needs box64, so will need both to run steam).

file no found means that you either lack binfmt integration, or the armhf subsystem entirely

Read the COMPILE.md to see how to add armhf subsystem on Debian/Ubuntu type of OS. For anything else, you'll to google it. If you lack binfmt integration (it can happens with Termux), then you need to setup BOX64_BASH to point to a x86_64 version of bash (availabe in the tests folder of box64 repo) and launch the shell script with box64. box64 will then run the shell script with that bash, and launch any 64bits apps with box64 and x86 apps with box86 (as long as there are installed in the same folder). That should compensate for the lack of binfmt.

I removed all steam files and re-ran the script. Now it updated the steam runtime environment, but it still fails running steam, with the x86_64 bash set up to be used by box64. Here is a part of the log:

Error: Reading elf header of /usr/local/bin/steam, Try to launch using bash instead
steam.sh[14433]: Running Steam on debian 12 64-bit
steam.sh[14433]: STEAM_RUNTIME is enabled by the user
setup.sh[14509]: Steam runtime environment up-to-date!
/home/alpha-craft/.local/share/Steam/ubuntu12_32/steam-runtime/run.sh: line 85: steam-runtime-identify-library-abi: command not found
run.sh[14521]: steam-runtime-identify-library-abi --ldconfig-paths failed, falling back to ldconfig
steam.sh[14433]: Can't find 'steam-runtime-check-requirements', continuing anyway
/home/alpha-craft/.local/share/Steam/steam.sh: line 792: /home/alpha-craft/.local/share/Steam/ubuntu12_32/steam: cannot execute: required file not found

AlphaCraft9658 avatar Jul 05 '24 08:07 AlphaCraft9658

Does the issue persist if you either:

  • perform a clean rebuild of the box86 with -D_TIME_BITS=32 in your CFLAGS and CXXFLAGS or
  • use a version prior to commit d3d971d449a6eb36d068d2a2663d815c08421947?

kpyrkosz avatar Jul 05 '24 18:07 kpyrkosz

Does the issue persist if you either:

  • perform a clean rebuild of the box86 with -D_TIME_BITS=32 in your CFLAGS and CXXFLAGS or
  • use a version prior to commit d3d971d449a6eb36d068d2a2663d815c08421947?

I would have to compile it then. I'm using the prebuilt package for Android. Also, I don't really know how to include those in the flags. I've never really messed with building things this much.

AlphaCraft9658 avatar Jul 05 '24 18:07 AlphaCraft9658

Can you update and try again, it might work better now.

ptitSeb avatar Aug 11 '24 13:08 ptitSeb

steam is a 32bits process, so it will run with box86 (and then, steam will launch steamwebhelper, that is a 64bits process, and needs box64, so will need both to run steam).

file no found means that you either lack binfmt integration, or the armhf subsystem entirely

Read the COMPILE.md to see how to add armhf subsystem on Debian/Ubuntu type of OS. For anything else, you'll to google it. If you lack binfmt integration (it can happens with Termux), then you need to setup BOX64_BASH to point to a x86_64 version of bash (availabe in the tests folder of box64 repo) and launch the shell script with box64. box64 will then run the shell script with that bash, and launch any 64bits apps with box64 and x86 apps with box86 (as long as there are installed in the same folder). That should compensate for the lack of binfmt.

What do you mean with both in the same folder? You mean that the binaries run for steam are all in the same folder, or that also an x86 version of bash is located in the same folder? Or even box64 and box86 being located in the same folder?

AlphaCraft9658 avatar Oct 07 '24 14:10 AlphaCraft9658

Can you update and try again, it might work better now.

Running the steam script with box64 and the BOX64_BASH variable set, after reinstalling steam, and with the latest version of box64, doesn't seem to work either. Still the same error when it's trying to execute the 32-bit steam binary.

AlphaCraft9658 avatar Oct 07 '24 15:10 AlphaCraft9658

I'm experiencing the same issue. I have created a proot with ubuntu (termux) and I have compiled following the instructions for the snapdragon 888 both box86 and box64 (for a samsung tab s9 ultra). After that I used the installer script in this repo for steam.

I'm not sure if everything is setup correctly. I ran box64 box64/tests/bash and then steam, when I got this output

Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT PageSize:4096 Running on Cortex-A510 Cortex-A715 Cortex-A710 - with 8 Cores
Will use Hardware counter measured at 19.2 MHz emulating 2.4 GHz
Params database has 92 entries
Box64 with Dynarec v0.3.1 cce43790 built on Oct 13 2024 17:40:58
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 27 Env var
BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
Looking for box64/tests/bash
bash detected, disabling banner
Apply RC params for bash
Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT PageSize:4096 Running on Cortex-A510 Cortex-A715 Cortex-A710 - with 8 Cores
Will use Hardware counter measured at 19.2 MHz emulating 2.4 GHz
Params database has 92 entries
Box64 with Dynarec v0.3.1 cce43790 built on Oct 13 2024 17:40:58
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 31 Env var
BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
Looking for box64/tests/bash
bash detected, disabling banner
Apply RC params for bash
Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT PageSize:4096 Running on Cortex-A510 Cortex-A715 Cortex-A710 - with 8 Cores
Will use Hardware counter measured at 19.2 MHz emulating 2.4 GHz
Params database has 92 entries
Box64 with Dynarec v0.3.1 cce43790 built on Oct 13 2024 17:40:58
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 34 Env var
BOX64 LIB PATH: BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
Looking for box64/tests/bash
bash detected, disabling banner
Apply RC params for bash
Error: File is not found. (check BOX64_PATH)

lilezek avatar Oct 13 '24 19:10 lilezek

I am able to get past the steam: cannot execute: required file not found error by launching an interactive Box64 Bash session with box64 box64-bash, but it still segfaults for one reason or another:

Output 1
user@localhost:~$ steam
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 25 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 28 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 31 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
steam.sh[15815]: Running Steam on ubuntu 24.04 64-bit
steam.sh[15815]: STEAM_RUNTIME is enabled by the user
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 37 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
setup.sh[15910]: Steam runtime environment up-to-date!
/home/user/.local/share/Steam/ubuntu12_32/steam-runtime/run.sh: line 85: steam-runtime-identify-library-abi: command not found
run.sh[15931]: steam-runtime-identify-library-abi --ldconfig-paths failed, falling back to ldconfig
steam.sh[15815]: Couldn't find /home/user/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/srt-logger, logging to console-linux.txt
steam.sh[15815]: Can't find 'steam-runtime-check-requirements', continuing anyway
Debug level is 1
Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA AES PMULL PageSize:4096 Running on Cortex-A510 Cortex-A715 Cortex-A710 - with 8 Cores
Params database has 32 entries
Box86 with Dynarec v0.3.9 fa59e748 built on Feb 15 2025 00:04:20
BOX86: Warning, program break not found
Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/
Using default BOX86_PATH: ./:bin/
Counted 41 Env var
Looking for /home/user/.local/share/Steam/ubuntu12_32/steam
steam detected
Apply RC params for steam
Applying BOX86_NOGTK=1
Applying BOX86_DYNAREC_STRONGMEM=1
Applying BOX86_DYNAREC_CALLRET=0
Applying BOX86_EMULATED_LIBS=libudev.so.0:libSDL2-2.0.so.0
Rename process to "steam"
Using native(wrapped) libdl.so.2
Using native(wrapped) libc.so.6
Using native(wrapped) ld-linux.so.2
Using native(wrapped) libpthread.so.0
Using native(wrapped) librt.so.1
Using native(wrapped) libbsd.so.0
Using native(wrapped) libX11.so.6
Using native(wrapped) libm.so.6
[2025-02-15 00:41:20] Startup - updater built Jul 16 2024 23:21:18
[2025-02-15 00:41:20] Startup - Steam Client launched with: '/home/user/.local/share/Steam/ubuntu12_32/steam'
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
src/steamexe/updateui_xwin.cpp (1466) : BFileExists( m_FontFileRegular )
src/steamexe/updateui_xwin.cpp (1466) : BFileExists( m_FontFileRegular )
/data/src/steamexe/updateui_xwin.cpp 1466 BFileExists( m_FontFileRegular )Emit Signal 5 at IP=0x3006db83 / addr=0x3006db83, code=128
BOX86: Warning, calling Signal function handler SIG_DFL with 3 args 
src/steamexe/updateui_xwin.cpp (1467) : BFileExists( m_FontFileLight )
src/steamexe/updateui_xwin.cpp (1467) : BFileExists( m_FontFileLight )
/data/src/steamexe/updateui_xwin.cpp 1467 BFileExists( m_FontFileLight )Emit Signal 5 at IP=0x3006dbab / addr=0x3006dbab, code=128
BOX86: Warning, calling Signal function handler SIG_DFL with 3 args 
Using emulated /home/user/.local/share/Steam/ubuntu12_32/crashhandler.so
Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0x6009aac0 (0x81b6)
02/15 00:41:20 minidumps folder is set to /tmp/dumps
02/15 00:41:20 Init: Installing breakpad exception handler for appid(steam)/version(0)/tid(15970)
Using native(wrapped) libGL.so.1
error: XDG_RUNTIME_DIR is invalid or not set in the environment.
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2025-02-15 00:41:20] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults
[2025-02-15 00:41:20] Using the following download hosts for Public, Realm steamglobal
[2025-02-15 00:41:20] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in'
[2025-02-15 00:41:20] Checking for update on startup
src/tier0/threadtools.cpp (2771) : Failed to set thread local value
src/tier0/threadtools.cpp (2771) : Failed to set thread local value
src/common/framefunction.cpp (238) : Assertion Failed: CFrameFunctionMgr::~CFrameFunctionMgr: non static FrameFunction[CHTTPClient::BFrameFuncHandleCompletedWorkItems] still registered
src/common/framefunction.cpp (238) : Assertion Failed: CFrameFunctionMgr::~CFrameFunctionMgr: non static FrameFunction[CHTTPClient::BFrameFuncHandleCompletedWorkItems] still registered
/home/user/.local/share/Steam/steam.sh: line 868: 15970 Segmentation fault      "$STEAMROOT/$STEAMEXEPATH" "$@"
Output 2
user@localhost:~$ steam
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 25 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 28 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 31 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
steam.sh[17134]: Running Steam on ubuntu 24.04 64-bit
steam.sh[17134]: STEAM_RUNTIME is enabled by the user
[BOX64] Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL ATOMICS SHA1 SHA2 USCAT FLAGM FLAGM2 FRINT
[BOX64] Running on Cortex-A510 with 8 cores, pagesize: 4096
[BOX64] Will use hardware counter measured at 19.2 MHz emulating 2.4 GHz
[BOX64] Box64 with Dynarec v0.3.3 efa1cbd4 built on Feb 14 2025 23:48:41
[BOX64] Didn't detect 48bits of address space, considering it's 39bits
[BOX64] Warning, program break not found
[BOX64] Counted 37 Env var
[BOX64] BOX64 LIB PATH: 
[BOX64] BOX64 BIN PATH: ./:bin/:/usr/local/sbin/:/usr/local/bin/:/usr/sbin/:/usr/bin/:/sbin/:/bin/:/usr/local/games/:/usr/games/:/data/data/com.termux/files/usr/bin/:/system/bin/:/system/xbin/
[BOX64] Looking for box64-bash
[BOX64] Bash detected, disabling banner
setup.sh[17244]: Steam runtime environment up-to-date!
/home/user/.local/share/Steam/ubuntu12_32/steam-runtime/run.sh: line 85: steam-runtime-identify-library-abi: command not found
run.sh[17265]: steam-runtime-identify-library-abi --ldconfig-paths failed, falling back to ldconfig
steam.sh[17134]: Couldn't find /home/user/.local/share/Steam/ubuntu12_32/steam-runtime/amd64/usr/bin/srt-logger, logging to console-linux.txt
steam.sh[17134]: Can't find 'steam-runtime-check-requirements', continuing anyway
Debug level is 1
Dynarec for ARMv8, with extension: HALF FAST_MULT EDSP NEON VFPv4 IDIVA AES PMULL PageSize:4096 Running on Cortex-A510 Cortex-A715 Cortex-A710 - with 8 Cores
Params database has 32 entries
Box86 with Dynarec v0.3.9 fa59e748 built on Feb 15 2025 00:04:20
BOX86: Warning, program break not found
Using default BOX86_LD_LIBRARY_PATH: ./:lib/:lib32/:x86/:i686/
Using default BOX86_PATH: ./:bin/
Counted 41 Env var
Looking for /home/user/.local/share/Steam/ubuntu12_32/steam
steam detected
Apply RC params for steam
Applying BOX86_NOGTK=1
Applying BOX86_DYNAREC_STRONGMEM=1
Applying BOX86_DYNAREC_CALLRET=0
Applying BOX86_EMULATED_LIBS=libudev.so.0:libSDL2-2.0.so.0
Rename process to "steam"
Using native(wrapped) libdl.so.2
Using native(wrapped) libc.so.6
Using native(wrapped) ld-linux.so.2
Using native(wrapped) libpthread.so.0
Using native(wrapped) librt.so.1
Using native(wrapped) libbsd.so.0
Using native(wrapped) libX11.so.6
Using native(wrapped) libm.so.6
[2025-02-15 00:45:32] Startup - updater built Jul 16 2024 23:21:18
[2025-02-15 00:45:32] Startup - Steam Client launched with: '/home/user/.local/share/Steam/ubuntu12_32/steam'
ILocalize::AddFile() failed to load file "public/steambootstrapper_english.txt".
src/steamexe/updateui_xwin.cpp (1466) : BFileExists( m_FontFileRegular )
src/steamexe/updateui_xwin.cpp (1466) : BFileExists( m_FontFileRegular )
/data/src/steamexe/updateui_xwin.cpp 1466 BFileExists( m_FontFileRegular )Emit Signal 5 at IP=0x3006db83 / addr=0x3006db83, code=128
BOX86: Warning, calling Signal function handler SIG_DFL with 3 args 
src/steamexe/updateui_xwin.cpp (1467) : BFileExists( m_FontFileLight )
src/steamexe/updateui_xwin.cpp (1467) : BFileExists( m_FontFileLight )
/data/src/steamexe/updateui_xwin.cpp 1467 BFileExists( m_FontFileLight )Emit Signal 5 at IP=0x3006dbab / addr=0x3006dbab, code=128
BOX86: Warning, calling Signal function handler SIG_DFL with 3 args 
Using emulated /home/user/.local/share/Steam/ubuntu12_32/crashhandler.so
Warning: Weak Symbol _ZGTtnaj not found, cannot apply R_386_JMP_SLOT 0x6009aac0 (0x81b6)
02/15 00:45:32 minidumps folder is set to /tmp/dumps
02/15 00:45:32 Init: Installing breakpad exception handler for appid(steam)/version(0)/tid(17318)
Using native(wrapped) libGL.so.1
error: XDG_RUNTIME_DIR is invalid or not set in the environment.
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
'cortex-x3' is not a recognized processor for this target (ignoring processor)
Looks like steam didn't shutdown cleanly, scheduling immediate update check
[2025-02-15 00:45:32] Failed to load cached hosts file (File 'update_hosts_cached.vdf' not found), using defaults
[2025-02-15 00:45:32] Using the following download hosts for Public, Realm steamglobal
[2025-02-15 00:45:32] 1. https://cdn.steamstatic.com, /client/, Realm 'steamglobal', weight was 1, source = 'baked in'
src/tier0/threadtools.cpp (2771) : Failed to set thread local value
src/tier0/threadtools.cpp (2771) : Failed to set thread local value
src/vstdlib/strtools.cpp (990) : pDest != NULL
src/vstdlib/strtools.cpp (990) : pDest != NULL
Sigfault/Segbus while quitting, exiting silently

jpovixwm avatar Feb 15 '25 00:02 jpovixwm