How to install a TeamSpeak 3 server on your Linux VPS
Instructions for installing a TeamSpeak 3 server on a Linux VPS.
We recommend the program PuTTY for SSH connections with servers.
Update system
Update your system and install the necessary programs:bashapt update && apt upgrade -yapt update && apt upgrade -ybashapt install sudo bzip2apt install sudo bzip2Create user
Create a subuser for the server and log in:bashadduser teamspeak --disabled-loginadduser teamspeak --disabled-loginbashsu teamspeak -lsu teamspeak -lDownload server
Copy the link for the latest 64-bit Linux server version on the TeamSpeak downloads page.Extract files
Download the file, extract it and navigate to the directory, for example with v3.13.7:bashwget https://files.teamspeak-services.com/releases/server/3.13.7/teamspeak3-server_linux_amd64-3.13.7.tar.bz2wget https://files.teamspeak-services.com/releases/server/3.13.7/teamspeak3-server_linux_amd64-3.13.7.tar.bz2bashtar xvfj teamspeak3-server_linux_amd64-3.13.7.tar.bz2tar xvfj teamspeak3-server_linux_amd64-3.13.7.tar.bz2bashrm teamspeak3-server_linux_amd64-3.13.7.tar.bz2rm teamspeak3-server_linux_amd64-3.13.7.tar.bz2bashcd teamspeak3-server_linux_amd64cd teamspeak3-server_linux_amd64Start server
Accept the licenses and start the server:bashtouch .ts3server_license_acceptedtouch .ts3server_license_acceptedbashchmod +x ts3server_startscript.shchmod +x ts3server_startscript.shbash./ts3server_startscript.sh start./ts3server_startscript.sh start
INFO
./ts3server_startscript.sh also works with stop, restart or status.