You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/guide/install/index.md
+20-1Lines changed: 20 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
title: Guide - Install NT;RE (Client)
2
2
3
3
# Guide - Install NT;RE (Client)
4
-
Last Updated: 2024-10-13
4
+
Last Updated: 2025-02-13
5
5
6
6
## Operating System Requirement
7
7
@@ -99,3 +99,22 @@ then click "Run". This will popup everytime NT;RE is started through Steam.
99
99
[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:
100
100
101
101

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.
0 commit comments