Its not only the ssd its the controller they use on it to. A lot of cheap ssd's have crappy controllers
Posts by steel2400
-
-
Hi guys,
i have the m500 from crucial in my build that is a good option to i think
this ssd is going good after almost 2 years.http://www.dixons.nl/opslag/ha…k&utm_source=tweakers.net
only 60 eurogreatz steel
-
oke cool nice job
-
aha now i get sorry you mean fore omv 1.0
you still need to edit the start up script then ?!
-
Strange i don't see it in the plugin repository
or is it in the jhmiller rep ?!did you see the last bids i added tho ?
-
take your time this is not going anywhere, i understand that i am a site moderator to
-
Hi David,
I have found the problem it seams that you need to chance the startscript.
So i maid a revision of your first draft is it possible that you verify my data ?.
This is also tested on my rig and works fine.QuoteHey Users,
here is a quick tutorial on how to setup your Teamspeak 3 Server on your OMV and make it reboot persistent.
-------------------------------------------
Teamspeak 3 installationFirst, we need to add a dedicated user for the TS3 Server. You will be asked to fill in some Information about the new user, but you can skip all of that by simply pressing Enter. However you need to fill in a challanging password!
Source Code
adduser ts3Now chmod the home dir of ts3
Source Code
chmod -R 755 /home/ts3Now we change via su (substitute user) to the created user and change to his home directory via cd:
Source Code
su ts3
cdAt the writing of this Tutorial the newest version is 3.0.7.2 (That should change in a few days to 3.0.8)
You will find the newest version under the following URL (Download that version that fits your system. e.g. if you have a 32bit installation, you need to download the x86 package! This tutorial uses the 64bit version):
teamspeak.com/?page=downloads
You need to accept the TeamSpeak 3.x End User License Agreement before you can continue to the download. Skip the survey. After that you can copy the download link and download it to your OMV via:
Source Code
wget http://dl.4players.de/ts/relea…nux-amd64-3.0.10.3.tar.gzExtract it:
Source Code
tar xfvz teamspeak3-server_linux-amd64-*.tar.gzRemove the archive:
Source Code
rm *.tar.gzCreate a symlink with the name "server" to teamspeak3-server_linux_amd64
Source Code
ln -s teamspeak3-server_linux-amd64 serverChange to the server directory
Source Code
cd serverAnd start the server:
Source Code
./ts3server_startscript.sh startFIRST START:
(ONLY ONCE!) You will see the serveradmin password and the first ServerAdmin token.The output will look like this:
Brainfuck Source Code
ts3@openmediavault:~/server$ ./ts3server_startscript.sh start
Starting the TeamSpeak 3 server
TeamSpeak 3 server started, for details please view the log file
ts3@openmediavault:~/server$
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
Server Query Admin Account created
loginname= "serveradmin", password= "JzgTt+Sb"
------------------------------------------------------------------
------------------------------------------------------------------
I M P O R T A N T
------------------------------------------------------------------
ServerAdmin privilege key created, please use it to gain
serveradmin rights for your virtualserver. please
also check the doc/privilegekey_guide.txt for details.
token=ICZqeD8uM8rNmAT4MJ3K2zA9WF7+zjA1u0UqqRHs
------------------------------------------------------------------Your server now runs in the background.
No need to put it on a screen like earlier versions of teamspeak.-------------------------------------------
Autostart on bootup / script in /etc/init.d:
Exit from the ts3 user, back to root
Change to the /etc/ini.d directory, open a file called teamspeak with any texteditor you like, i use nano (The file will be created if it does not exist)
Source Code
cd /etc/init.d
nano teamspeakFill it with following informations:
Shell-Script
#! /bin/sh
### BEGIN INIT INFO
# Provides: teamspeak
# Required-Start: networking
# Required-Stop:
# Default-Start: 2 3 4 5
# Default-Stop: 0 1 6 ( no s here this wil give you a fail on init.d)
# Short-Description: TeamSpeak Server Daemon
# Description: Starts/Stops/Restarts the TeamSpeak Server Daemon
### END INIT INFOset -e
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
DESC="TeamSpeak Server"
NAME=teamspeak
USER=ts3 ( my user fore teamspaek )
DIR=/home/ts3/server ( the directory its in if you install it like davidh2k said )
DAEMON=$DIR/ts3server_startscript.sh
#PIDFILE=/var/run/$NAME.pid
SCRIPTNAME=/etc/init.d/$NAME# Gracefully exit if the package has been removed.
test -x $DAEMONexit 0
cd $DIR
sudo -u $USER ./ts3server_startscript.sh $1Make it executable:
Source Code
chmod a+x teamspeakUpdate-rc.d to copy symlinks to all runlevels that the teamspeak Server starts on bootup.
Source Code
update-rc.d teamspeak defaultsfore those that have more than 1 nic (network card)
Sourse Code
nano ts3server.inithen copy and past this :
machine_id=
default_voice_port=9987
voice_ip=0.0.0.0 (use this to bind your ip)
liscensepath=
filetransfer_port=30033
filetransfer_ip=0.0.0.0 (use this to bind your ip)
query_port=10011
query_ip=0.0.0.0
dbplugin=ts3db_mysql
dbpluginparameter=ts3db_mysql.ini
dbsqlpath=sql/
dbsqlcreatepath=create_mysql/
logpath=logs
logquerycommands=0Then we only need to do is:
Source Code
nano ts3server_startscript.shthis wil be the output :
#!/bin/sh
# Copyright (c) 2010 TeamSpeak Systems GmbH
# All rights reservedCOMMANDLINE_PARAMETERS="${2}" #inifile=ts3server.ini (this is wat it needs to look like)
D1=$(readlink -f "$0")
BINARYPATH="$(dirname "${D1}")"
cd "${BINARYPATH}"
LIBRARYPATH="$(pwd)"if [ -e ts3server_linux_x86 ]; then
if [ -z "`uname | grep Linux`" -o ! -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system?$
fi
BINARYNAME="ts3server_linux_x86"
elif [ -e ts3server_linux_amd64 ]; then
if [ -z "`uname | grep Linux`" -o -z "`uname -m | grep 64`" ]; then
echo "Do you have the right TS3 Server package for your system?$Save with ctrl O and exit.
exit su ts3
restart the server.
Sourse Code.
You can manage your Teamspeak 3 Server now via /etc/init.d/teamspeak command
e.g.:Source Code
/etc/init.d/teamspeak status
/etc/init.d/teamspeak start
/etc/init.d/teamspeak stopGreetings
David and steel2400great looking forum guys
i hoop you don't mind me doing this
greatz steel2400
-
That is very strange i have to look in to it on the server end.
like the say its not suppose to happen at all but this is the last entry of that ThreadQuoteI have this problem too and require some assistance; this is whats going on and require some help/expertise from you guys:
We're running multiple virtual servers on one NPL so no we don't have a license but we do use multiple IP's, or at least intend on doing so;
We have multiple IP's assigned to our machine but if we enable the other IP's, 80% of our clients are unable to connect to our teamspeak servers.
If we use one IP there is no problems and everything runs smoothly and everyone can connect, but the minute we enable the other IP's, the problem begins; is there anyone out there that can help clarify our problem and help provide a detailed solution?
Thanks in advance
i will look in to it and get back to this if i work it out (got to test it in the coming day,s)
thanks fore the speedy replay david
greatz steel2400
-
Yes that is what i mean,
Some times its on xxx.xxx.x.105 and on reboot of the server its on xxx.xxx.x.106 its just not very productive if i have to
change the port forwarding on my router when that happens.is it possible to pare the nic's so that i have 1 static ip address ?
thanks fore the help.
greatz steel2400
-
Hi guys,
I just installed a second nic in my omv box but now i have problems with teamspeak it is bouncing of 2 nic's
that i have in it.
So i cant port forward to two nic's is it possible to bind teamspeak to 1 ip (nic) ?greatz steel2400
-
is het ook duidelijk wat ik heb gedaan dan
-
-
hoi allemaal,
Ik heb de server gebouwd
Het volgende heb ik gebruikt voor de hardware.
.mini tower
.asus moederbord m2nx-plus
.amd Athlon 64x2 dual core
.200 gig harde schijf (die ik nog had liggen)
.4 keer 2tb seagate in raid 5Ik heb de installatie gedaan zoals ik had beschreven in de vorige post met een klein verschil, eerst heb ik 0.3 geinstaleerd en ben daarna over gegaan naar 0.5 .
Verder ben ik ook over gegaan van deluge naar transmission die wat makkelijker is in gebruik (die kan je gebruiken direct vanaf de openmediavault interface)
Het systeem draait nu al een week non-stop zonder problemen.
wat ik nu extra heb geinstaleerd zijn:
.teamspeak 3
.omv-extra repository
.mjhmiller repository -
hey guys,
just got teamspeak on my server running i did the install like davidh2k said and it works great
just like tekkbebe said the init.d script fore start up is not correct this is what i maid of it.Code
Display More#! /bin/sh ### BEGIN INIT INFO # Provides: teamspeak # Required-Start: networking # Required-Stop: # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 ( no s here this wil give you a fail on init.d) # Short-Description: TeamSpeak Server Daemon # Description: Starts/Stops/Restarts the TeamSpeak Server Daemon ### END INIT INFO set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin DESC="TeamSpeak Server" NAME=teamspeak USER=ts3 ( my user fore teamspaek ) DIR=/home/ts3/server ( the directory its in if you install it like davidh2k said ) DAEMON=$DIR/ts3server_startscript.sh #PIDFILE=/var/run/$NAME.pid SCRIPTNAME=/etc/init.d/$NAME # Gracefully exit if the package has been removed. test -x $DAEMON || exit 0 cd $DIR sudo -u $USER ./ts3server_startscript.sh $1
it is a minor change but it works great
-
Hi guy's,
I still have the same problem i get the same like the post above.
Gr. steel2400
-
Quote from "Komerad"
Hier worden knopjes voor voorzien in de layout als je volgend script gebruikt :
Ooo super dat is wel makkelijk maar voor multiple vensters vind ik de poort nummers beter maar dat is persoonlijk.
Deze post had ik gemaakt voor het gemakkelijk installeren van 0.5 OMV wat in mijn ogen het beste werkt.QuoteWhen I get some time I'll make pre-configured vms for .5 OMV. Just have not had the time.
I think that the way its done is fine but it can be an learning curve to do it your self it did fore me tho.
And this is just the best way to install it on to a machine if you ask me.
I dont think it is necessary to automate it people still need to learn how to use OMV.Gr.steel2400
-
hi ryecoaaron,
I just did remove the plugin and will install it in the morning.
Al post back with an update after my Holiday.Gr. steel2400
-
Quote from "davidh2k"
That would be irrelevant to OMV in particular, because OMV writes all mount points to the fstab, but I need to see when i got time for it, I will say something about the fstab. Prior at the moment has the guide for dummies (english version).
Greetings
DavidWel you mite be right, But to use fstab and permanently mount a disk wil be A lot faster to get in to the disk to see the file structure and apply it on the back end off the server.
Fore use of couchpotato,deluge and headphone to apply read and right permissions is it notThis is just an idea i had hope it helps.
P.s.thanks fore considering it tho
Gr. steel2400
-
Hi,
the output of ls -al /etc/apache2/sites-available/ is:
Codedrwxr-xr-x 2 root root 4096 okt 24 15:19 . drwxr-xr-x 8 root root 4096 sep 25 12:03 .. -rw-r--r-- 1 root root 692 mrt 3 2013 default -rw-r--r-- 1 root root 7251 mrt 3 2013 default-ssl -rw-r--r-- 1 root root 108 okt 24 15:41 openmediavault-webgui
mite this be a problem off chmod ?!
Gr. steel2400
-
Hi Guys,
I wanted to get a site online via the plugin website but i encounter'd a problem:
Code
Display MoreFout #4000: exception 'OMVException' with message 'Failed to execute command 'omv-mkconf website 2>&1': ERROR: Site openmediavault-website does not exist!' in /usr/share/openmediavault/engined/module/website.inc:50 Stack trace: #0 /usr/share/openmediavault/engined/rpc/config.inc(162): OMVModuleWebsite->applyConfig() #1 [internal function]: OMVRpcServiceConfig->applyChanges(Array, Array) #2 /usr/share/php/openmediavault/rpcservice.inc(125): call_user_func_array(Array, Array) #3 /usr/share/openmediavault/engined/rpc/config.inc(230): OMVRpcServiceAbstract->callMethod('applyChanges', Array, Array) #4 [internal function]: OMVRpcServiceConfig->applyChangesBg(Array, Array) #5 /usr/share/php/openmediavault/rpcservice.inc(125): call_user_func_array(Array, Array) #6 /usr/share/php/openmediavault/rpc.inc(62): OMVRpcServiceAbstract->callMethod('applyChangesBg', Array, Array) #7 /usr/sbin/omv-engined(495): OMVRpc::exec('Config', 'applyChangesBg', Array, Array, 1) #8 {main}
I have try'd to make the requested .inc file but with no luck i am doing some thing wrong but don't know what
Gr. steel2400