Thecus N2100 and TwonkyServer 7.0.8

Other OS or NAS discussions
Post Reply
Gunny2k6
Posts:3
Joined:Tue May 15, 2012 8:14 pm
AV Hardware:Various Routers, TVs,PS3,Xbox,PCs,Laptops etc
Thecus N2100 and TwonkyServer 7.0.8

Post by Gunny2k6 » Tue May 15, 2012 8:17 pm

OK i m trying to update the Module for TwonkyMedia 5.1 for the N2100.

Ok i ve got TwonkyServer 7.0.8 on the box and when i run it i got

Twonky Version 7.0.8
03:10:49:151 [Startup] - LOG_SYSTEM: upnp_ini_file_init_DATA_Dir : AppData folder - /var/twonky/TwonkyServer - cannot be accessed or not writable.
03:10:49:153 [Startup] - LOG_SYSTEM: Error: 2 No such file or directory


Any help ? plz :evil:

Gunny2k6
Posts:3
Joined:Tue May 15, 2012 8:14 pm
AV Hardware:Various Routers, TVs,PS3,Xbox,PCs,Laptops etc

Re: Thecus N2100 and TwonkyServer 7.0.8

Post by Gunny2k6 » Tue May 15, 2012 8:43 pm

ok got it ./twonkystarter -appdata /raid/Nas/Twonkey to store it on the hdd .... now to try get the script commands thing to work ...

so can confirm 7.0.8 works on a good old Thecus N2100 NAS 8)

Gunny2k6
Posts:3
Joined:Tue May 15, 2012 8:14 pm
AV Hardware:Various Routers, TVs,PS3,Xbox,PCs,Laptops etc

Re: Thecus N2100 and TwonkyServer 7.0.8

Post by Gunny2k6 » Tue May 15, 2012 9:14 pm

ok need help with auot start stop boot script

the original with just edits to the excute files no idea if this works but just seeing if any one spots anything i havnt

#!/bin/sh
#
# Startup script for Module
# Adapted to TwonkyMedia on Thecus by figolino
# Some definitions.
#==================================================================[ Setup ]===

WORKDIR="/raid/module/TWONKYMEDIA/twonkymedia-armel-glibc-2.2.5"

#=================================================================[ Script ]===

RETVAL=1

#

DAEMON=twonkystarter
if [ ! -f "${WORKDIR}/${DAEMON}" ]
then
DAEMON=twonkymusic
fi
TWONKYSRV="${WORKDIR}/${DAEMON}"

#

start() {
/usr/bin/killall -9 twonkystarter twonkyserver twonkywebdav twonkyproxy
$TWONKYSRV -logfile $WORKDIR/../twonkymedia-server.log > startInfo.txt
RETVAL=0
return $RETVAL
}

stop() {
/usr/bin/killall -9 twonkystarter twonkyserver twonkywebdav twonkyproxy
RETVAL=0
return $RETVAL
}

boot() {
/usr/bin/killall -9 twonkystarter twonkyserver twonkywebdav twonkyproxy
$TWONKYSRV > startInfo.txt
RETVAL=0
return $RETVAL
}

# See how we were called.
case "$1" in
start)
start
;;
stop)
stop
;;
boot)
# boot
start
;;
restart)
stop
start
;;
*)
echo $"Usage: $prog {start|stop|restart|boot}"
exit 1
esac

exit $RETVAL

JoLander
Posts:1
Joined:Wed Jun 06, 2012 12:25 pm
AV Hardware:Thecus N2100

Re: Thecus N2100 and TwonkyServer 7.0.8

Post by JoLander » Wed Jun 06, 2012 12:53 pm

@Gunny2k6

I recently bought a Thecus N2100 (was very cheap 8) ) and got it running with 512MB and the latest Beta Firmware (2.01.11.4). I installed several modules and the System is running fine so far.
I also installed the TwonkyServer 5.1 which also works well.

Because I tend to try out whatever is available, I would like to install the Version 7.0.8 as well.
Unfortunately, I'm out of knowledge on how to install Software on the Thecus if it is not packaged as an installable module.

Would it be possible that you give me some hints on what you did to get the Twonky 7.0.8 running on your system ?
I have SSH access to my box, so I'm able to do almost everything with it.

What I need to know is:
1) which version I have to download from here.
2) where to place it on the Thecus and
3) how to start it

Thanks in advance,
Joe

Post Reply