• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

How to setup your own Teamspeak on Linux :)

Damon

Check my status to contact me :)
Joined
Mar 26, 2011
Messages
6,209
Solutions
1
Reaction score
2,026
Location
Germany
Hello,
So I am new to linux and just made a script to install Teamspeak 3 automaticly on your server :)
I know once you know how to set it up it really isn't difficult but just in case you don't know here it is.

This will work on probably any linux system and was successfully tested on debian and ubuntu.

There are 2 different possibilites for your script depending of which linux you run.

Create a file named "whatever.sh" and past one of the following codes in it depending on your linux system. If you don't know which one you have type in "uname -m" in console :p

1. linux_amd64
Code:
#!/bin/sh
wget http://dl.4players.de/ts/releases/3.0.11.3/teamspeak3-server_linux-amd64-3.0.11.3.tar.gz
tar -xzvf teamspeak3-server_linux-amd64-3.0.11.3.tar.gz
cd teamspeak3-server_linux-amd64/
./ts3server_startscript.sh start

2. linux_x86
Code:
#!/bin/sh
wget http://dl.4players.de/ts/releases/3.0.11.3/teamspeak3-server_linux-x86-3.0.11.3.tar.gz
tar -xzvf teamspeak3-server_linux-x86-3.0.11.3.tar.gz
cd teamspeak3-server_linux-x86/
./ts3server_startscript.sh start

Now upload the file to your linux server and execute it. That's it!
MAKE SURE to note the admin token aswell as query pw you are given in Putty when executing this script.


If you used the wrong one you probably will get an error. Just use the other one then and it will most likely work just fine :)
 
Last edited:
Back
Top