-
Notifications
You must be signed in to change notification settings - Fork 0
/
triggers.json
226 lines (224 loc) · 6.81 KB
/
triggers.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
{
"Triggers": [
{
"Name": "0x202",
"Starters": [
{
"Type": "simple",
"Value": "0x202"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#write-error-no-space-left-on-device"
},
{
"Name": "0x402",
"Starters": [
{
"Type": "simple",
"Value": "0x402"
},
{
"Type": "simple",
"Value": "0x602"
}
],
"Answer": "Update required but not completed - check network configuration"
},
{
"Name": "Multiple IPs",
"Starters": [
{
"Type": "simple",
"Value": "multiple ip addresses found"
},
{
"Type": "simple",
"Value": "multiple active network interfaces"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#warn-multiple-active-network-interfaces"
},
{
"Name": "missing dependencies",
"Starters": [
{
"Type": "simple",
"Value": "warning! missing dependencies"
}
],
"Answer": "You appear to have missing dependencies, LinuxGSM will list the command you need to install it at the bottom of the error."
},
{
"Name": "tmux 1000",
"Starters": [
{
"Type": "simple",
"Value": "/tmp/tmux-1000/default"
}
],
"Answer": "This error can be caused by multiple issues, the first thing to test is can you run a tmux session?\n`tmux` - If successful you should have a green bar at the bottom, use `exit` to close it\nIf successful your game server is probably crashing instantly check the log files for any errors."
},
{
"Name": "address binding",
"Starters": [
{
"Type": "simple",
"Value": "cannot assign requested address"
}
],
"Answer": "If your server cannot bind to an address this is usually because something is already using it.\nCheck the usage of ports using `ss -putl | grep :[port]` Change `[port]` to the port you are trying to bind to.\n\nAlternatively you are trying to bind to an address you don't actually have. Double check the IP/Port in the configuration."
},
{
"Name": "tmux missing",
"Starters": [
{
"Type": "simple",
"Value": "tmux not installed"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#tmux-command-not-found"
},
{
"Name": "SSL Error",
"Starters": [
{
"Type": "simple",
"Value": "unable to establish ssl connection"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#i-cant-download-linuxgsm-sh-tls-ssl-errors"
},
{
"Name": "steamcmd ports",
"Starters": [
{
"Type": "simple",
"Value": "login failure: no connection"
}
],
"Answer": "This error is **usually** not a problem with linux but the official fix is to allow a bunch of ports.\n\nThis is related to missing iptables rules. You will want something along these lines:\n\n```BASH\niptables -A INPUT -p udp -m udp --sport 27000:27030 --dport 1025:65355 -j ACCEPT\niptables -A INPUT -p udp -m udp --sport 4380 --dport 1025:65355 -j ACCEPT\n```"
},
{
"Name": "no subscription",
"Starters": [
{
"Type": "simple",
"Value": "error! failed to install (no subscription)"
}
],
"Answer": "https://docs.linuxgsm.com/steamcmd/errors#error-failed-to-install-app-less-than-appid_number-greater-than-no-subscription"
},
{
"Name": "32 bit required",
"Starters": [
{
"Type": "simple",
"Value": "steamcmd: error while loading shared libraries: libstdc++"
}
],
"Answer": "Since SteamCMD is a 32-bit binary, 32-bit libraries are required.\nThe resolution depends on your distro:\n\n**Debian based distributions (Ubuntu, Mint, etc.)**\n```BASH\nsudo dpkg --add-architecture i386\nsudo apt-get update\nsudo apt-get install lib32gcc1\n```\n\n**Red Hat based distributions (RHEL, Fedora, CentOS, etc.)**\n```BASH\nyum install glibc.i686 libstdc++.i686\n```"
},
{
"Name": "Ownership issues",
"Starters": [
{
"Type": "simple",
"Value": "ownership issues found"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#fail-starting-game-server-ownership-issues-found"
},
{
"Name": "raspberry pi",
"Starters": [
{
"Type": "simple",
"Value": "raspberry pi"
}
],
"Answer": "https://docs.linuxgsm.com/support/faq#will-linuxgsm-run-on-raspberry-pi"
},
{
"Name": "sdl not found",
"Starters": [
{
"Type": "simple",
"Value": "sdl not found"
}
],
"Answer": "https://docs.linuxgsm.com/steamcmd/errors#loading-steam-api-failed-to-init-sdl-priority-manager-sdl-not-found"
},
{
"Name": "mod install",
"Starters": [
{
"Type": "simple",
"Value": "how do i install umod"
},
{
"Type": "simple",
"Value": "how do i install oxide"
}
],
"Answer": "https://docs.linuxgsm.com/commands/mods"
},
{
"Name": "Steam Guard",
"Starters": [
{
"Type": "simple",
"Value": "account using steam guard"
},
{
"Type": "simple",
"Value": "steam guard code"
}
],
"Answer": "https://docs.linuxgsm.com/steamcmd#steam-guard"
},
{
"Name": "Backups",
"Starters": [
{
"Type": "simple",
"Value": "i create a backup"
},
{
"Type": "simple",
"Value": "i create backups"
},
{
"Type": "simple",
"Value": "i schedule backup"
},
{
"Type": "simple",
"Value": "i schedule a backup"
}
],
"Answer": "https://docs.linuxgsm.com/commands/backup"
},
{
"Name": "FTP",
"Starters": [
{
"Type": "simple",
"Value": "connect to ftp"
},
{
"Type": "simple",
"Value": "connect using ftp"
},
{
"Type": "simple",
"Value": "upload using ftp"
},
{
"Type": "simple",
"Value": "upload via ftp"
}
],
"Answer": "FTP is not recommended, please use SFTP instead: https://docs.linuxgsm.com/linux/ftp-scp\n\nSince you are probably using Windows, there are many options for this, such as: \n<https://www.bitvise.com/ssh-client> (Doubles up as an SSH client, and even attempts to fix ownership issues if you make that mistake)\n<https://filezilla-project.org> (You need to use the Connection Manager and select SFTP)"
}
]
}