Hello guys, today I just wanted to share to nice tutorial on how to host a simple teamspeak server on Ubuntu Linux 64x. To start off you are going to need to have a unmanaged vps, with Ubuntu 14.x and up.
1. Login to root for your server.
2. Now download the server files needed to run the teamspeak 3 server.
http://ftp.4players.de/pub/hosted/ts3/releases/3.0.10.3/teamspeak3-server_linux-amd64-3.0.10.3.tar.gz (IDK if the bbc hide works on these forums)
4. Now you want to extract the files using the tar extract command.
tar xzf teamspeak3-server_linux-amd64-3.0.10.3.tar.gz
5. Once you have extracted the files, you can get rid of the tar files as you already have it extracted.
rm teamspeak3-server_linux-amd64-3.0.10.3.tar.gz
6. Now you want to create a user with no login to boot the ts3 server.
sudo adduser --disabled-login teamspeak3
7. Now you want to move all the config and binaries to the local area of the new user.
sudo mv teamspeak3-server_linux-amd64 /usr/local/teamspeak3
8. Now you want to give ownership of the files to the ts3 user now.
sudo chown -R teamspeak3 /usr/local/teamspeak3
9. Now you want to create a symlink with the init script so that your ts3 server starts on vps reboot or bootup.
[code[sudo ln -s /usr/local/teamspeak3/ts3server_startscript.sh /etc/init.d/teamspeak3
10. Now you want to start the process of the startup of the ts3 server.
sudo update-rc.d teamspeak3 defaults
sudo service teamspeak3 start
11. Now you want to copy the code displayed as "serveradmin" password="%" because you will you need this to promote yourself to administrator.
~~~~Hope you guys liked the small TuT, If you liked it, please let me know by approving this post. THX