English   German
  #1  
Old 23-05-2008, 19:07
VascoMan VascoMan is offline
-= TeamSpeak Lover =-
 
Join Date: Dec 2003
Location: ab
Posts: 31
VascoMan is on a distinguished road
Lightbulb Install teamspeak-server in ubuntu 8.04

use apt to install teamspeak-server in ubuntu 8.04.

currently, ubuntu 8.04 multiverse repository only has version 2.0.23.19

instead, download teamspeak-server_2.0.24.1+debian-1_i386.deb from the debian repo.

install the package
Code:
sudo dpkg -i teamspeak-server_2.0.24.1+debian-1_i386.deb
the server should now be running, and will start automatically at each boot.


view default superadmin password
Code:
sudo vi /etc/teamspeak-server/passwords
edit the ini file
Code:
sudo vi /etc/teamspeak-server/server.ini
view the log
Code:
sudo vi /var/log/teamspeak-server.log
start stop restart the server
Code:
sudo /etc/init.d/teamspeak-server start|stop|restart
to restore an old database
Code:
sudo /etc/init.d/teamspeak-server stop
cp server.dbs /usr/var/sqlite.db
sudo /etc/init.d/teamspeak-server start
superadmin password from the restored database overrides /etc/teamspeak-server/passwords

I just went through this procedure myself, thought I'd share with others.
Hopefully I didnt miss anything
Reply With Quote
  #2  
Old 23-05-2008, 23:24
VascoMan VascoMan is offline
-= TeamSpeak Lover =-
 
Join Date: Dec 2003
Location: ab
Posts: 31
VascoMan is on a distinguished road
notice the default db name is changed from server.dbs to sqlite.db
default name for binary blob changed from server_linux to teamspeak-server

change the path of ini, database, and log
Code:
sudo vi /etc/default/teamspeak-server
install path:
Code:
/etc/default/teamspeak-server

/etc/init.d/teamspeak-server

/etc/logrotate.d/teamspeak-server

/etc/teamspeak-server/passwords
/etc/teamspeak-server/server.ini

/var/lib/teamspeak-server/badnames
/var/lib/teamspeak-server/sqlite.db

/usr/bin/teamspeak-server

/usr/lib/teamspeak-server/getpasswords
/usr/lib/teamspeak-server/libsqlmy.so
/usr/lib/teamspeak-server/server.ini
/usr/lib/teamspeak-server/sqlite.so
/usr/lib/teamspeak-server/teamspeak-server.real

/usr/share/doc/teamspeak-server/

/usr/share/teamspeak-server/httpdocs/
/usr/share/teamspeak-server/sql/
/usr/share/teamspeak-server/tcpquerydocs/
Reply With Quote
  #3  
Old 30-05-2008, 07:44
ozman's Avatar
ozman ozman is offline
-= TeamSpeak Addict =-
 
Join Date: Oct 2006
Location: USA
Posts: 113
ozman is on a distinguished road
Proper Way To Install and Update... also With MySQL integration if You Want
I Don't Recomend MySQL unless You Know What You Are Doing
Quote:
default name for binary blob changed from server_linux to teamspeak-server
*** actually "teamspeak-server.real" in dir /usr/lib/teamspeak-server ***

Code:
// Install the paks \\
sudo apt-get install mysql-server openssh-server teamspeak-server
*** openssh-server is not nessary ***
*** I Would Reboot Here ***
Code:
// Get the Updated Binary \\
wget ftp://ftp.freenet.de/pub/4players/teamspeak.org/developer/server/202401/server_linux
Code:
sudo /etc/init.d/teamspeak-server stop
Code:
// Backup \\
sudo cp /usr/lib/teamspeak-server/teamspeak-server.real /usr/lib/teamspeak-server/teamspeak-server.real.old
sudo cp /etc/teamspeak-server/server.ini /etc/teamspeak-server/server.ini.old
Code:
// Copy Updated Binary \\
sudo cp server_linux /usr/lib/teamspeak-server/teamspeak-server.real
// Change Owner and Group \\
sudo chown -R root /usr/lib/teamspeak-server/teamspeak-server.real
sudo chgrp -R root /usr/lib/teamspeak-server/teamspeak-server.real
// Make It Executable \\
sudo chmod -R 0755 /usr/lib/teamspeak-server/teamspeak-server.real
*** Stop Here If You Don't Want MySQL ***
Code:
// Edit server.ini ADD TO THE END OF FILE \\
sudo pico /etc/teamspeak-server/server.ini
 
[DBEXPRESS]
sqldir=/usr/share/teamspeak-server/sql/mysql/
Drivername=mysql
Database=teamspeakdb
Hostname=127.0.0.1
User_name=dbUser
Password=dbPass
GetDriverFunc=getSQLDriverMYSQL
VendorLib=/usr/lib/teamspeak-server/libmysqlclient_r.so.10.0.0
LibraryName=/usr/lib/teamspeak-server/libsqlmy.so
Active=1
Code:
// Get The Libs \\
cd /usr/lib/teamspeak-server
sudo wget http://hotballs.servegame.com/Downloads/lib.php
Code:
// Get the MySQL files \\
cd /usr/share/teamspeak-server/sql/mysql
sudo wget ftp://ftp.freenet.de/pub/4players/teamspeak.org/developer/server/202401/mysql_sql/*
sudo chown -R root /usr/share/teamspeak-server/sql/mysql
sudo chgrp -R root /usr/share/teamspeak-server/sql/mysql
Code:
// MySQL commands BE VERY CAREFUL \\
mysql -u root -p
 
CREATE DATABASE teamspeakdb;
 
GRANT SELECT, INSERT, UPDATE, DELETE, ALTER, CREATE, DROP ON teamspeakdb.* TO 'dbUser'@'localhost' IDENTIFIED BY 'dbPass';
FLUSH PRIVILEGES;
 
SET PASSWORD FOR
'dbUser'@'localhost' = OLD_PASSWORD('dbPass');
FLUSH PRIVILEGES;
Code:
// Start the server \\
sudo /etc/init.d/teamspeak-server start
I will work on a chroot jail for this install and post later when its finished
If you would like a install script PM me and i will wright it for you but you can prety much copy and paste it will work

Last edited by ozman; 30-05-2008 at 08:34. Reason: I DON'T KNOW HOW TO SPELL
Reply With Quote
  #4  
Old 14-06-2008, 21:29
Aunin Aunin is offline
-= TeamSpeak User =-
 
Join Date: Jun 2008
Location: Germany / Berlin
Posts: 1
Aunin is on a distinguished road
Red face

Is it possibile to combine this script with the " setarch i386 " command?

I want my Vserver to start with it.

I got Ubuntu 8.04
Linux version 2.6.16.37-domU-v1 (root@vhost2) (gcc version 3.3.5 (Debian 1:3.3.5-13))

greets Inferno
Reply With Quote
  #5  
Old 16-06-2008, 03:25
ozman's Avatar
ozman ozman is offline
-= TeamSpeak Addict =-
 
Join Date: Oct 2006
Location: USA
Posts: 113
ozman is on a distinguished road
Here is a link to the FAQ about "setarch"

http://www.teamspeak.com/?page=faq&c..._fix_segfaults

Forgot: you may need to install the package setarch or arch
Reply With Quote
  #6  
Old 24-09-2009, 12:04
beverly beverly is offline
-= TeamSpeak User =-
 
Join Date: Sep 2009
Location: CHANDANNAGAR
Posts: 1
beverly is on a distinguished road
I want to customize ubuntu and put it on a disk so it is like a new ubuntu, but customized. For Example, gOS. But I don't know how to put it on the disk, plz tell me how.
___________________
external keyword tool ~ keyworddiscovery.com ~ keycompete.com ~ compete.com ~ webmasterworld.com

Last edited by beverly; 30-09-2009 at 06:50.
Reply With Quote
  #7  
Old 24-09-2009, 18:45
BHKai's Avatar
BHKai BHKai is offline
-= Undercover TeamSpeak Fanatic =-
 
Join Date: Jan 2007
Location: LA
Posts: 4,712
BHKai is a glorious beacon of lightBHKai is a glorious beacon of lightBHKai is a glorious beacon of lightBHKai is a glorious beacon of lightBHKai is a glorious beacon of lightBHKai is a glorious beacon of light
Quote:
Originally Posted by beverly View Post
I want to customize ubuntu and put it on a disk so it is like a new ubuntu, but customized. For Example, gOS. But I don't know how to put it on the disk, plz tell me how.

You have to ask the devs is you are allowed to do that first.
Reply With Quote
Reply

Tags
8.04, linux, teamspeak-server, ubuntu


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Web interface timing out J_Campbell7 [TeamSpeak 2] Server Support 0 10-02-2008 16:36
Flooding ANZEIGE?!? oehlie [TeamSpeak 2] Server Support 12 19-12-2007 22:39
Can't enter admistration or my server. TheSavior [TeamSpeak 2] Server Support 12 10-06-2006 22:48
Friends can't connect shadow127 [TeamSpeak 2] Server Support 86 01-01-2006 20:45
disconnection Barmace [TeamSpeak 2] Server Support 8 10-10-2004 19:23


All times are GMT +1. The time now is 17:58.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Add to Bookmarks   |   Printview   |   Contact Us   |   Legal Notices



You Rated this Thread: