|
TeamSpeak is a VOIP software that allows users to chat on a channel with other users. On December 2009, TeamSpeak 3 beta was released to the public. Here's a tutorial on how to install, setup and run a 64-bit GNU/Linux TeamSpeak 3 server.
First off I'm going to assume that you're not logged in as a super user (root) and that you're already logged in to the user account you want to use for your TS3 installation. So the first step would be creating a directory for your TS3 installation.
mkdir teamspeak3
Then go that directory...
cd teamspeak3
We then download the latest version of TS3 using wget (for this tutorial, the latest version is 3.0.0 beta22).
wget http://ftp.4players.de/pub/hosted/ts3/releases/beta-22/teamspeak3-server_linux-amd64-3.0.0-beta22.tar.gz
We then unpack it using tar.
tar zxvf teamspeak3-server_linux-amd64-3.0.0-beta22.tar.gz
NOTE: if you're wondering what the letters mean, z stands for gzip/gunzip (.gz), x stands for extract, v stands for verbose, and f stands for filename.
Go to the directory which in this case is teamspeak3-server_linux-amd64.
cd teamspeak3-server_linux-amd64
There isn't any ts3server.ini file created yet so let's create one. This way we'll be able to change the IP TS3 is binded too and its ports.
./ts3server_minimal_runscript.sh createinifile=1
Now close it by pressing Ctrl-C. Don't forget to copy/paste the admin login and password since you'll need it later. it looks like this.
2010-04-24 20:16:53.943147|WARNING |VirtualServer | 1| --------------------------------------------------------
2010-04-24 20:16:53.943494|WARNING |VirtualServer | 1| ServerAdmin token created, please use the line below
2010-04-24 20:16:53.943882|WARNING |VirtualServer | 1| token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
2010-04-24 20:16:53.944316|WARNING |VirtualServer | 1| --------------------------------------------------------
Go ahead and edit your ts3server.ini file to your liking. If you have a license key then that's where you also specify where it's located. After that, all you have to do is start your server!
Start it using the following command.
./ts3server_startscript.sh start
NOTE: Before you tell everyone that you've just finished setting up your TS3 server, make sure that you've opened up the ports on your firewall otherwise no one would be able to connect to it.
|