blob: f13a599992cf2d0595bd45b3504113da73cf6fcb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
Error loading needed lib libpulse-mainloop-glib.so.0
Hello, I'm trying to run a Valheim server on a Pi 5. I got it working for the most part. However, it seems to fail when loading this library which causes it to crash.
```sh
Dynarec for ARM64, with extension: ASIMD AES CRC32 PMULL SHA1 SHA2 PageSize:4096 Running on Cortex-A76 with 4 Cores Params database has 38 entries
Box64 with Dynarec v0.2.6 e42001b built on Jan 11 2024 09:11:05
BOX64: Didn't detect 48bits of address space, considering it's 39bits
Counted 17 Env var
BOX64 LIB PATH: ./:lib/:lib64/:x86_64/:bin64/:libs64/:/lib/x86_64-linux-gnu/:/usr/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/Looking for ./valheim_server_Data/Plugins/libparty.so
Rename process to "libparty.so"
Redirecting overridden malloc from symtab function for /home/steam/valheim_server/valheim_server_Data/Plugins/libparty.so
Using native(wrapped) libdl.so.2
Using native(wrapped) libz.so.1
Using native(wrapped) libatomic.so.1
Using native(wrapped) libpulse.so.0
Using native(wrapped) libpulse-simple.so.0
Error loading needed lib libpulse-mainloop-glib.so.0
Using emulated /lib/x86_64-linux-gnu/libstdc++.so.6
Using native(wrapped) libm.so.6
Using emulated /lib/x86_64-linux-gnu/libgcc_s.so.1
Using native(wrapped) libpthread.so.0
Using native(wrapped) libc.so.6
Using native(wrapped) ld-linux-x86-64.so.2
Using native(wrapped) libutil.so.1
Using native(wrapped) librt.so.1
Using native(wrapped) libbsd.so.0
Error loading one of needed lib
Error: Loading needed libs in elf /home/steam/valheim_server/valheim_server_Data/Plugins/libparty.so
```
The server seems to run fine up to the point where I can connect locally, but crashes shortly after connecting.
Not sure if this helps, but I'be also done the following:
* Converted page size from 16k to 4k
* Installed box64 with these flags `DRPI5ARM64=1 -DCMAKE_BUILD_TYPE=RelWithDebInfo`
* Converted server script to run as `systemctl` service. It just freezes and fails to detect it crashes.
* Installed `testing`, `experimental`, and `unstable` versions of `libpulse*` libraries
|