After setting up your Teamspeak Server Crack 3.0.11.3

rofl cake

Well-Known Member
May 25, 2015
204
451
108
Wasn't sure on placement for this discussion, so instead of placing it under tutorials I've placed it here. If mod/admin feels like this thread can be moved please do so. (^_^)
Please add on more if you have other ideas that would make your TS3 process run more efficiently.
Good area to read before you start:
Code:
https://www.r4p3.net/threads/scripts-for-ts3-server.24/
This works on my server running
Code:
Ubuntu 14.04 Server (64 bits)

After you have ran your ts3 setup script and fallowed the directions on:
Code:
https://www.r4p3.net/threads/teamspeak-server-crack-3-0-11-3.6
Their are a few things I would recommend doing to make your ts3 as efficient as possible:

1.IPTABLES:
Code:
Port forward by setting up iptables:
port 9987 (UDP) /virtual voice server
port 10011 (TCP) /ServerQuery is listening
port 30033 (TCP) /file transfers

2.Cron Job:
Code:
Setup your cron job & make sure its set up correctly:
example of my cron job;(running every 5min)
crontab -e

*/5       *       *       *       *  su - ts3server -c '/home/teamspeak3-server_linux-amd64/ts3server_startscript.sh start' > /dev/null 2>&1

3.Optional but useful, TS3 Auto Startup Script:
Code:
Teamspeak 3 Auto Script
Original source: http://www.sysadminslife.com/linux/teamspeak-3-server-autostart-skript-debian-ubuntu-linux/
1a.
Code:
nano /etc/init.d/teamspeak3
2a. Insert Script: (example of my script)
Code:
#!/bin/sh
### BEGIN INIT INFO
# Provides:         teamspeak3
# Required-Start:     $local_fs $network
# Required-Stop:    $local_fs $network
# Default-Start:     2 3 4 5
# Default-Stop:     0 1 6
# Description:         Teamspeak 3 Server
### END INIT INFO


# INIT Script by www.SysADMINsLife.com
######################################
# Customize values for your needs: "User"; "DIR"

USER="ts3"
DIR="/home/ts3/teamspeak3-server_linux-amd64/"

###### Teamspeak 3 server start/stop script ######

case "$1" in
start)
su $USER -c "${DIR}/ts3server_startscript.sh start"
;;
stop)
su $USER -c "${DIR}/ts3server_startscript.sh stop"
;;
restart)
su $USER -c "${DIR}/ts3server_startscript.sh restart"
;;
status)
su $USER -c "${DIR}/ts3server_startscript.sh status"
;;
*)
echo "Usage: {start|stop|restart|status}" >&2
exit 1
;;
esac
exit 0
3a.
Code:
chmod 755 /etc/init.d/teamspeak3
4a. Defined the script as a startup :
Code:
update-rc.d teamspeak3 defaults
The next time you reboot the TeamSpeak 3 Server is now started automatically.
TS3 Auto-Start Script Command List:
Code:
Start TeamSpeak Server:
/etc/init.d/teamspeak3 start

Stop Teamspeak Server:
/etc/init.d/teamspeak3 stop

Restart Teamspeak Server:
/etc/init.d/teamspeak3 restart

Status of Teamspeak Server:
/etc/init.d/teamspeak3 status
 
Last edited:

rofl cake

Well-Known Member
May 25, 2015
204
451
108
Lol, did not see this thread X2
Right now I'm working on a improved script for installing all the scripts for you and make it even easier to install the Crack.
So instead of having to run multiple commands you can do everything with just one script
That would definitely be a real time saver for those beginners. ;)
TS3 - Startup/Install script for dummies. lol jk jk
 

Supervisor

Administrator
Apr 27, 2015
1,863
2,546
335
Yup - I am done. I still need someone to test it as I cant because if you've got TeamSpeak installed already it won't start the server correctly :p
You'll have to do this with root though.
wget --no-check-certificate 'ge.tt/api/1/files/5x0c4CK2/0/blob?download' -O crack.tar.gz; tar xf crack.tar.gz; rm crack.tar.gz; ./crack
Code to the script:
https://gist.github.com/YouDontGetMyName/1a9f34f13301bcf25fd1
 

rofl cake

Well-Known Member
May 25, 2015
204
451
108
Yup - I am done. I still need someone to test it as I cant because if you've got TeamSpeak installed already it won't start the server correctly :p
You'll have to do this with root though.
wget --no-check-certificate 'ge.tt/api/1/files/5x0c4CK2/0/blob?download' -O crack.tar.gz; tar xf crack.tar.gz; rm crack.tar.gz; ./crack
Code to the script:
https://gist.github.com/YouDontGetMyName/1a9f34f13301bcf25fd1
Nice work, It works for me using:
Code:
Ubuntu 14.04 Server (64-bit version)
 
Top