Page 1 of 1
Problems starting the server under Linux 32bit with SP
Posted: Sun Apr 20, 2025 7:20 pm
by Painkiller
Code: Select all
[Source.Python] Loading...
[Source.Python] Failed to load the main module due to following exception:
Traceback (most recent call last):
File "/home/container/hl2mp/addons/source-python/packages/source-python/__init__.py", line 89, in load
setup_sp_command()
~~~~~~~~~~~~~~~~^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/__init__.py", line 342, in setup_sp_command
from core.command import auth, docs, dump, plugin
File "/home/container/hl2mp/addons/source-python/packages/source-python/core/command/__init__.py", line 20, in <module>
from commands.typed import TypedServerCommand
File "/home/container/hl2mp/addons/source-python/packages/source-python/commands/typed.py", line 29, in <module>
from filters.players import parse_filter
File "/home/container/hl2mp/addons/source-python/packages/source-python/filters/players.py", line 26, in <module>
from players.entity import Player
File "/home/container/hl2mp/addons/source-python/packages/source-python/players/entity.py", line 19, in <module>
import players._base
File "/home/container/hl2mp/adource-python/packages/source-python/players/_base.py", line 45, in <module>
from entities.entity import Entity
File "/home/container/hl2mp/addons/source-python/packages/source-python/entities/entity.py", line 17, in <module>
import entities._base
File "/home/container/hl2mp/addons/source-python/packages/source-python/entities/_base.py", line 48, in <module>
from filters.weapons import WeaponClassIter
File "/home/container/hl2mp/addons/source-python/packages/source-python/filters/weapons.py", line 16, in <module>
from weapons.manager import weapon_manager
File "/home/container/hl2mp/addons/source-python/packages/source-python/weapons/manager.py", line 174, in <module>
weapon_manager = _WeaponManager()
File "/home/container/hl2mp/addons/source-python/packages/source-python/weapons/manager.py", line 79, in __init__
self[name] = WeaponClass(
~~~~~~~~~~~^
name, basename, self.ini['weapons'][basename]
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
)
^
File "/home/container/hl2mp/addons/source-python/packages/source-python/weapons/instance.py", line 47, in __init__
self._slot = self.parse_weapon_constants(
~~~~~~~~~~~~~~~~~~~~~~~~~~~^
properties.get('slot', None), WeaponSlot)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/weapons/instance.py", line 192, in parse_weapon_constants
return weapon_constants(value)
File "/home/container/hl2mp/addons/source-python/Python3/enum.py", line 730, in __call__
raise TypeError(
f"{cls} has no members; specify `names=()` if you meant to create a new, empty, enum"
)
TypeError: <enum 'WeaponSlot'> has no members; specify `names=()` if you meant to create a new, empty, enum
[Source.Python] Could not initialize python.
Failed to load plugin "addons/source-python"
[Source.Python] Unloading...
[Source.Python] Unloaded successfully.
Unable to load plugin "addons/source-python"
Re: Problems starting the server under Linux 32bit with SP
Posted: Sun Apr 20, 2025 10:13 pm
by cssbestrpg
That issue is caused by
this commit
Re: Problems starting the server under Linux 32bit with SP
Posted: Mon Apr 21, 2025 7:31 am
by Painkiller
Linux
Code: Select all
weapon_crowbar slot: 0 x: 0
weapon_pistol slot: 1 x: 1
weapon_smg1 slot: 2 x: 2
weapon_frag slot: 4 x: 3
weapon_physcannon slot: -1 x: 4
weapon_stunstick slot: -1 x: 5
weapon_357 slot: -1 x: 6
weapon_ar2 slot: -1 x: 7
weapon_shotgun slot: 3 x: 8
weapon_crossbow slot: -1 x: 9
weapon_rpg slot: -1 x: 10
weapon_slam slot: -1 x: 11
Windows
Code: Select all
weapon_pistol slot: 1 x: 0
weapon_crowbar slot: 0 x: 1
weapon_stunstick slot: -1 x: 2
weapon_357 slot: -1 x: 3
weapon_smg1 slot: 2 x: 4
weapon_ar2 slot: 5 x: 5
weapon_shotgun slot: 3 x: 6
weapon_frag slot: 4 x: 7
weapon_crossbow slot: -1 x: 8
weapon_rpg slot: -1 x: 9
weapon_slam slot: -1 x: 10
weapon_physcannon slot: -1 x: 11
Re: Problems starting the server under Linux 32bit with SP
Posted: Mon Apr 21, 2025 9:38 am
by cssbestrpg
I am not sure if
this is best fix for that, but it gets source.python back to run
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 6:07 am
by Ayuto
A new build has been released!
Re: SP Update 735: Problems starting the server
Posted: Tue Apr 22, 2025 7:15 am
by Painkiller
Hello next problem with newest update
Code: Select all
[Source.Python] Loading...
[Source.Python] Failed to load the main module due to following exception:
Traceback (most recent call last):
File "/home/container/hl2mp/addons/source-python/packages/source-python/__init__.py", line 90, in load
setup_auth()
~~~~~~~~~~^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/__init__.py", line 353, in setup_auth
auth_manager.load()
~~~~~~~~~~~~~~~~~^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/auth/manager.py", line 295, in load
self.set_active_backend(_core_settings['AUTH_SETTINGS']['backend'])
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/auth/manager.py", line 316, in set_active_backend
backend.load()
~~~~~~~~~~~~^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/auth/backends/flatfile.py", line 52, in load
self.sync()
~~~~~~~~~^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/auth/backends/flatfile.py", line 58, in sy self.load_json_config(
~~~~~~~~~~~~~~~~~~~~~^
auth_manager.players, self.options['player_config_path'])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/container/hl2mp/addons/source-python/packages/source-python/auth/backends/flatfile.py", line 122, in load_json_config
with path.open('w') as file:
~~~~~~~~~^^^^^
File "/home/container/hl2mp/addons/source-python/packages/site-packages/path/__init__.py", line 758, in open
return open(self, *args, **kwargs)
FileNotFoundError: [Errno 2] No such file or directory: Path('/home/ogp_agent/OGP_User_Files/4/hl2mp/cfg/source-python/auth/players.json')
[Source.Python] Could not initialize python.
Failed to load plugin "addons/source-python"
[Source.Python] Unloading...
[Source.Python] Unloaded successfully.
Unable to load plugin "addons/source-python"
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 3:43 pm
by Ayuto
Could you please check if the mentioned file exists? If not, are the permissions set correctly, so SP can create that file?
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 4:18 pm
by Painkiller
Ayuto wrote:Could you please check if the mentioned file exists? If not, are the permissions set correctly, so SP can create that file?
I already have a file from earlier.
Things are already entered there.
All permissions are there.
But the server won't even start. (Metamod is off)
Code: Select all
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Source.Python] Loading...
[Pterodactyl Daemon]: Server is outputting console data too quickly -- throttling...
container@pterodactyl~ Server marked as offline...
[Pterodactyl Daemon]: ---------- Detected server process in a crashed state! ----------
[Pterodactyl Daemon]: Exit code: 139
[Pterodactyl Daemon]: Out of memory: false
[Pterodactyl Daemon]: Aborting automatic restart, last crash occurred less than 60 seconds ago.
player.json:
Code: Select all
{
"[U:1:42504738]": {
"parents": [
"guest"
],
"permissions": [
"*"
]
},
"[U:1:43907303]": {
"parents": [
"guest"
],
"permissions": [
"*",
"blackmarket.*"
]
},
"[U:1:66103826]": {
"parents": [
"guest"
],
"permissions": [
"*",
"blackmarket.*"
]
},
"[U:1:50814128]": {
"parents": [
"guest"
],
"permissions": [
"*",
"skilly"
]
}
}
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 5:27 pm
by Ayuto
What did you change? Because that's a different output.
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 5:31 pm
by Painkiller
Ayuto wrote:What did you change? Because that's a different output.
I installed the latest version and then uploaded stuff from back then.
My Stuff
- plugin folder
- /hl2mp/resource/source-python/
- /hl2mp/cfg/source-python
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 5:33 pm
by Ayuto
Does a fresh server without anything old work fine? Just a fresh SP installation?
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 5:35 pm
by Painkiller
Ayuto wrote:Does a fresh server without anything old work fine? Just a fresh SP installation?
No, if I turn off SP the server starts up normally.
But i can test again fresh sp version without my stuff.
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 5:55 pm
by Painkiller
YES, it's still the same problem.
Server won't start.
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 7:08 pm
by Ayuto
Can you please start your server with -debug? Maybe the debug.log tells us a little bit more.
Re: Problems starting the server under Linux 32bit with SP
Posted: Tue Apr 22, 2025 8:25 pm
by Painkiller
Ayuto wrote:Can you please start your server with -debug? Maybe the debug.log tells us a little bit more.
Code: Select all
Segmentation fault (core dumped)
warning: File "/home/container/hl2mp/addons/source-python/bin/core.so" auto-loading has been declined by your `auto-load safe-path' set to "$debugdir:$datadir/auto-load".
debug.cmds:5: Error in sourced command file:
No function contains program counter for selected frame.
email debug.log to linux@valvesoftware.com
Tue Apr 22 22:19:56 CEST 2025: Server Quit
i can not uploaded txt file cfg, .log etc.
Pastebin tells me it's too much, too.
Same in the forum
Here is the most important thing.
Code: Select all
----------------------------------------------
CRASH: Tue Apr 22 22:19:49 CEST 2025
Start Line: ./srcds_linux -game hl2mp -console -port 27015 +map dm_rocks_wake_island +ip 0.0.0.0 -strictportbind -norestart +maxplayers 20 -heartbeat +exec server.cfg +r_hunkalloclightmaps 0 -debug
[New LWP 58]
[New LWP 65]
[New LWP 66]
[New LWP 62]
[New LWP 64]
[New LWP 60]
[New LWP 59]
[New LWP 61]
[New LWP 63]
[Thread debugging using libthread_db enabled]
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
Core was generated by `./srcds_linux -game hl2mp -console -port 27015 +map dm_rocks_wake_island +ip 0.'.
Program terminated with signal SIGSEGV, Segmentation fault.
#0 0xf7d7c4fc in ?? () from /lib/i386-linux-gnu/libc.so.6
[Current thread is 1 (Thread 0xf7d26700 (LWP 58))]
To enable execution of this file add
add-auto-load-safe-path /home/container/hl2mp/addons/source-python/bin/core.so
line to your configuration file "/home/container/.config/gdb/gdbinit".
To completely disable this security protection add
set auto-load safe-path /
line to your configuration file "/home/container/.config/gdb/gdbinit".
For more information about this security protection see the
"Auto-loading safe path" section in the GDB manual. E.g., run from the shell:
info "(gdb)Auto-loading safe path"
#0 0xf7d7c4fc in ?? () from /lib/i386-linux-gnu/libc.so.6
#1 0xf7d7edb7 in __printf_fp () from /lib/i386-linux-gnu/libc.so.6
#2 0xf7d87319 in ?? () from /lib/i386-linux-gnu/libc.so.6
#3 0xf7da3dc5 in ?? () from /lib/i386-linux-gnu/libc.so.6
#4 0xf7da3e2a in vsnprintf () from /lib/i386-linux-gnu/libc.so.6
#5 0xf65603b8 in V_vsnprintf(char*, int, char const*, char*) () from /home/container/bin/engine_srv.so
#6 0xf656d346 in CUtlString::FormatV(char const*, char*) () from /home/container/bin/engine_srv.so
#7 0xf656d3d5 in CUtlString::Format(char const*, ...) () from /home/container/bin/engine_srv.so
#8 0xf652a910 in Sys_SpewFunc(SpewType_t, char const*) () from /home/container/bin/engine_srv.so
#9 0xf7cffb8f in _SpewMessage(SpewType_t, char const*, int, Color const*, char const*, char*) () from bin/libtier0_srv.so
#10 0xf7d00030 in Msg () from bin/libtier0_srv.so
#11 0xf0d073bf in CSourcePython::Load(void* (*)(char const*, int*), void* (*)(char const*, int*)) () from /home/container/hl2mp/addons/source-python.so
#12 0xf0d076f5 in CSourcePython::Load(void* (*)(char const*, int*), void* (*)(char const*,
Code: Select all
int*)) () from /home/container/hl2mp/addons/source-python.so
#7457 0xf0c9a6f5 in CSourcePython::Load(void* (*)(char const*, int*), void* (*)(char const*, int*)) () from /home/container/hl2mp/addons/source-python.so
#7458 0xf658cef6 in CPlugin::Load(char const*) () from /home/container/bin/engine_srv.so
#7459 0xf658d6c1 in CServerPlugin::LoadPlugin(char const*) () from /home/container/bin/engine_srv.so
#7460 0xf658d979 in plugin_load(CCommand const&) () from /home/container/bin/engine_srv.so
#7461 0xf65a55af in Cmd_ExecuteCommand(CCommand const&, cmd_source_t, int) () from /home/container/bin/engine_srv.so
#7462 0xf65a57f3 in Cbuf_ExecuteCommand(CCommand const&, cmd_source_t) [clone .constprop.0] () from /home/container/bin/engine_srv.so
#7463 0xf65a5b45 in Cmd_Exec_f(CCommand const&) () from /home/container/bin/engine_srv.so
#7464 0xf65a55af in Cmd_ExecuteCommand(CCommand const&, cmd_source_t, int) () from /home/container/bin/engine_srv.so
#7465 0xf65a57f3 in Cbuf_ExecuteCommand(CCommand const&, cmd_source_t) [clone .constprop.0] () from /home/container/bin/engine_srv.so
#7466 0xf65a5b45 in Cmd_Exec_f(CCommand const&) () from /home/container/bin/engine_srv.so
#7467 0xf65a55af in Cmd_ExecuteCommand(CCommand const&, cmd_source_t, int) () from /home/container/bin/engine_srv.so
#7468 0xf65a57f3 in Cbuf_ExecuteCommand(CCommand const&, cmd_source_t) [clone .constprop.0] () from /home/container/bin/engine_srv.so
#7469 0xf65a5ee5 in Cbuf_Execute() () from /home/container/bin/engine_srv.so
#7470 0xf65f6118 in _Host_RunFrame(float) () from /home/container/bin/engine_srv.so
#7471 0xf65ffb6b in CHostState::State_Run(float) () from /home/container/bin/engine_srv.so
#7472 0xf65fff10 in CHostState::FrameUpdate(float) () from /home/container/bin/engine_srv.so
#7473 0xf6600063 in HostState_Frame(float) () from /home/container/bin/engine_srv.so
#7474 0xf6659c7f in CEngine::Frame() () from /home/container/bin/engine_srv.so
#7475 0xf66574aa in CDedicatedServerAPI::RunFrame() () from /home/container/bin/engine_srv.so
#7476 0xf720e7b2 in RunServer() () from bin/dedicated_srv.so
#7477 0xf66571ea in CModAppSystemGroup::Main() () from /home/container/bin/engine_srv.so
#7478 0xf66a4af8 in CAppSystemGroup::Run() () from /home/container/bin/engine_srv.so
#7479 0xf6658234 in CDedicatedServerAPI::ModInit(ModInfo_t&) () from /home/container/bin/engine_srv.so
#7480 0xf720e474 in CDedicatedAppSystemGroup::Main() () from bin/dedicated_srv.so
#7481 0xf7325778 in CAppSystemGroup::Run() () from bin/dedicated_srv.so
#7482 0xf7325778 in CAppSystemGroup::Run() () from bin/dedicated_srv.so
#7483 0xf71f805a in main () from bin/dedicated_srv.so
#7484 0x080491d4 in main ()
No symbol table info available.
eax 0x8 8
ecx 0xf 15
edx 0x1 1
ebx 0x11a164 1155428
esp 0xff305000 0xff305000
ebp 0xff305188 0xff305188
esi 0xff305158 -13610664
edi 0xff305080 -13610880
eip 0xf7cdf2a1 0xf7cdf2a1
eflags 0x210202 [ IF RF ID ]
cs 0x23 35
ss 0x2b 43
ds 0x2b 43
es 0x2b 43
fs 0x0 0
gs 0x63 99
From To Syms Read Shared Object Library
0xf7ec0040 0xf7ec0141 Yes (*) /lib/i386-linux-gnu/libdl.so.2
0xf7ebb040 0xf7ebb141 Yes (*) /lib/i386-linux-gnu/libpthread.so.0
0xf7cb4150 0xf7e2bc65 Yes (*) /lib/i386-linux-gnu/libc.so.6
0xf7ed3050 0xf7ef5c71 Yes (*) /lib/ld-linux.so.2
0xf7c66100 0xf7c7d588 Yes (*) bin/libtier0_srv.so
0xf7ab01e0 0xf7bc87a5 Yes (*) /lib32/libstdc++.so.6
0xf793c170 0xf79fb91e Yes (*) /lib/i386-linux-gnu/libm.so.6
0xf790b340 0xf7927695 Yes (*) /lib/i386-linux-gnu/libgcc_s.so.1
0xf7808100 0xf783b178 Yes (*) bin/libvstdlib_srv.so
0xf71e54e0 0xf7348478 Yes (*) bin/dedicated_srv.so
0xf716c730 0xf718cd34 Yes (*) bin/libsteam_api.so
0xf7034780 0xf7043214 Yes (*) /lib/i386-linux-gnu/libtinfo.so.5
0xf651d100 0xf66ce6a8 Yes (*) /home/container/bin/engine_srv.so
0xf647a0c0 0xf64a5774 Yes (*) /home/container/bin/soundemittersystem_srv.so
0xf5d6c0c0 0xf5e4de84 Yes (*) /home/container/bin/materialsystem_srv.so
0xf35bd0c0 0xf3661a14 Yes (*) /home/container/bin/studiorender_srv.so
0xf34220c0 0xf3539f44 Yes (*) /home/container/bin/vphysics_srv.so
0xf3b8b0c0 0xf3bd7264 Yes (*) /home/container/bin/datacache_srv.so
0xf33550c0 0xf33c4354 Yes (*) /home/container/bin/vscript_srv.so
0xf640f0c0 0xf6428274 Yes (*) /home/container/bin/shaderapiempty_srv.so
0xf1a380c0 0xf223e0e4 Yes (*) /home/container/hl2mp/bin/server_srv.so
0xf3b4e0c0 0xf3b6a784 Yes (*) /home/container/bin/scenefilecache_srv.so
0xf0e8b980 0xf0ea89a4 Yes (*) /home/container/hl2mp/addons/plr/plr.so
0xf0e63290 0xf0e742b9 Yes (*) /home/container/hl2mp/addons/source-python/Python3/plat-linux/libz.so.1.2.11
0xf0720400 0xf09f6ec8 Yes /home/container/hl2mp/addons/source-python/Python3/plat-linux/libpython3.13.so.1.0
0xf6406040 0xf6406141 Yes (*) /lib/i386-linux-gnu/libutil.so.1
0xefbaf0d0 0xf0272d08 Yes /home/container/hl2mp/addons/source-python/bin/core.so
0xf6401060 0xf6401314 Yes (*) /lib/i386-linux-gnu/librt.so.1
0xf0e42cc0 0xf0e542b8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_datetime.cpython-313-x86_64-linux-gnu.so
0xef7c89b0 0xef7cdc78 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_struct.cpython-313-x86_64-linux-gnu.so
0xef7aa110 0xef7ba1b8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_pickle.cpython-313-x86_64-linux-gnu.so
0xef79f190 0xef7a0340 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_heapq.cpython-313-x86_64-linux-gnu.so
0xef799410 0xef79a3e8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_queue.cpython-313-x86_64-linux-gnu.so
0xef77b090 0xef788848 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_socket.cpython-313-x86_64-linux-gnu.so
0xef760ad0 0xef76d5c8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/math.cpython-313-x86_64-linux-gnu.so
0xef7557d0 0xef758388 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/select.cpython-313-x86_64-linux-gnu.so
0xef743b70 0xef74a188 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/array.cpython-313-x86_64-linux-gnu.so
0xef6fb410 0xef6fd338 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_md5.cpython-313-x86_64-linux-gnu.so
0xef6f5410 0xef6f6b28 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_sha1.cpython-313-x86_64-linux-gnu.so
0xef6dc3f0 0xef6ee928 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_sha2.cpython-313-x86_64-linux-gnu.so
0xef6cc470 0xef6d6b78 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_blake2.cpython-313-x86_64-linux-gnu.so
0xef6c24b0 0xef6c6c48 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_sha3.cpython-313-x86_64-linux-gnu.so
0xef67d470 0xef67df78 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/grp.cpython-313-x86_64-linux-gnu.so
0xef66e7f0 0xef674438 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/zlib.cpython-313-x86_64-linux-gnu.so
0xef6628f0 0xef665d88 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_lzma.cpython-313-x86_64-linux-gnu.so
0xef626590 0xef646884 Yes (*) /lib/i386-linux-gnu/liblzma.so.5
0xef5dc2f0 0xef5de718 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_bisect.cpython-313-x86_64-linux-gnu.so
0xef65b4b0 0xef65c548 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_random.cpython-313-x86_64-linux-gnu.so
0xef515370 0xef5165f8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_opcode.cpython-313-x86_64-linux-gnu.so
0xef4cd410 0xef4cfe58 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/binascii.cpython-313-x86_64-linux-gnu.so
0xef360730 0xef366628 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_json.cpython-313-x86_64-linux-gnu.so
0xef2583f0 0xef259b78 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/fcntl.cpython-313-x86_64-linux-gnu.so
0xef250850 0xef252818 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_posixsubprocess.cpython-313-x86_64-linux-gnu.so
0xef24b0b0 0xef24b264 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_contextvars.cpython-313-x86_64-linux-gnu.so
0xef239a90 0xef241d98 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_asyncio.cpython-313-x86_64-linux-gnu.so
0xef15b6b0 0xef16d248 Yes /home/container/hl2mp/addons/source-python/packages/site-packages/greenlet/_greenlet.cpython-313-x86_64-linux-gnu.so
0xeee1cd90 0xeee5dc78 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/_decimal.cpython-313-x86_64-linux-gnu.so
0xee86e570 0xee8722f8 Yes /home/container/hl2mp/addons/source-python/Python3/lib-dynload/unicodedata.cpython-313-x86_64-linux-gnu.so
0xec18a000 0xeda72994 Yes (*) /home/container/.steam/sdk32/steamclient.so
0xf0c96cc0 0xf0ccd0d8 Yes /home/container/hl2mp/addons/source-python.so
(*): Shared library is missing debugging information.
End of Source crash report
----------------------------------------------
Your message contains 2315642 characters.
The maximum number of allowed characters is 60000.
Re: Problems starting the server under Linux 32bit with SP
Posted: Wed Apr 23, 2025 12:05 am
by L'In20Cible
You are loading SP multiple times. Delete your ../addons/source-python.vdf file or remove your plugin_load from your server.cfg file.
Re: Problems starting the server under Linux 32bit with SP
Posted: Wed Apr 23, 2025 6:32 am
by Painkiller
L'In20Cible wrote:You are loading SP multiple times. Delete your ../addons/source-python.vdf file or remove your plugin_load from your server.cfg file.
Okay, that worked.
Because of the other error:
core_settings.iniI think I know what's wrong.
I should have done this before, I just forgot.