Skip to content

Instantly share code, notes, and snippets.

@joelbowen
Created May 28, 2013 03:29
Show Gist options
  • Save joelbowen/5660343 to your computer and use it in GitHub Desktop.
Save joelbowen/5660343 to your computer and use it in GitHub Desktop.
Setting Up TeamSpeak3 on Linux
//Note, the following ports should be open:
TCP:
22 (SSH)
10011
30033
UDP:
9987
//Start by creating a user to manage the TeamSpeak application:
/*If running on ec2, no need to create ts3 user.
Instead, mount an EBS volume (See Gist for mounting) and
make the ec2-user the owner of the mounted folder before
proceeding with wget below*/
useradd ts3user
//Give user a password
passwd ts3user
//Type password twice
//Change permisions of users' folder
chmod 755 /home/ts3user
//Change to the user
su ts3user
//Enter password
//Go to http://www.teamspeak.com/?page=downloads and get latest server download link (64/32bit)
wget <latest link here>
// Extract the file, use ls commands to get name correct
tar -zxvf <file-name>
//Remove the .tar
rm <file-name>
//Make the folder name more reasonable
mv <folder-name> <new-folder-name>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment