Skip to content

Commit 4cbd42c

Browse files
authored
Troubleshooter for Linux glibc 2.41>= engine.so issue (#9)
1 parent 56187e7 commit 4cbd42c

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

src/_footer.html

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<hr>
2-
<p>Neotokyo; Rebuild - 2024</p>
2+
<p>
3+
Neotokyo; Rebuild - 2024-2025 | Neotokyo: Revamp - 2019-2024
4+
</p>
35
</body>
46
</html>
57

src/guide/install/index.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
title: Guide - Install NT;RE (Client)
22

33
# Guide - Install NT;RE (Client)
4-
Last Updated: 2024-10-13
4+
Last Updated: 2025-02-13
55

66
## Operating System Requirement
77

@@ -99,3 +99,22 @@ then click "Run". This will popup everytime NT;RE is started through Steam.
9999
[Double check the contents](#installing-ntre) of your installation folder, you probably did not extract folders/files properly or are missing some all together. Make sure you have downloaded the necessary libraries and resource files from the "Assets" section of the latest release. Down below is an image of how your installation folder should look like:
100100

101101
![Picture of the installation folder](folderstructure.png)
102+
103+
### Linux - engine.so: cannot enable executable stack as shared object requires: Invalid argument
104+
105+
Since [glibc 2.41, Source SDK 2013's `engine.so` will fail to load](https://github.com/ValveSoftware/portal2/issues/451)
106+
causing the game to not start. To workaround this, go to the Source SDK 2013 Multiplayer's bin directory:
107+
108+
```
109+
~/.steam/steam/steamapps/common/Source SDK Base 2013 Multiplayer/bin
110+
```
111+
112+
Then make a backup of `engine.so` and use [execstack](https://linux.die.net/man/8/execstack) on it:
113+
114+
```
115+
cp engine.so engine.so.bak
116+
execstack -c engine.so
117+
```
118+
119+
NT;RE should be able to load up normally afterward.
120+

0 commit comments

Comments
 (0)