Page 1 of 1
Install on Terastation Pro
Posted: Thu Jan 31, 2008 7:16 am
by flyfishin4trout
Upgraded firmware success. Run installer for Terastation Pro and success. Reboot NAS and cannot access the twonky pages at ip:9000. I have uninstalled and reinstalled. Any ideas would be great. I would really love for this to work. Thanks

Posted: Fri Feb 01, 2008 6:00 am
by flyfishin4trout
I have tried every version of the terastation software and it still wont allow me access via hostip:9000
I have tried installing from vista and from xp. No firewalls. Any ideas would be great. TIA
Me Too
Posted: Sat Feb 09, 2008 10:59 am
by Lardspice
FlyFishing
Did you manage to solve your issue with the Terastation Pro? I have exactly the same issue...
If you solved it please can you share your fix..
Thanks
Posted: Wed Feb 13, 2008 3:42 pm
by Swifty
Hallo...
ich hatte das gleiche Problem, konnte es jedoch lösen.
Ich habe die Terastation Pro (PPC). Das entsprechende Instalationskit (PPC) von Twonky funktionierte jedoch nicht. Es legte keine Verzeichnisse auf der Terastation an. So habe ich probeweise die Version für den ARM-Prozessor instaliert ... siehe da, die Verzeichnise wurden angelegt, jedoch lief diese Twonky-Version aus verständlichen Gründen nicht auf dem Gerät. Daher habe ich alles wieder deinstaliert und folghendes ausprobiert:
1. Instalationspaket für ARM-Prozessor heruntergeladen und auf meinen Computer extrahiert.
2. Instalationspaket für PPC-Prozessor heruntergeladen und in ein anderes Verzeichnis auf meinem Computer extrahiert.
3. Aus dem Paket für den PPC-Prozessor die Dateien "twonkymediaserver", "twonkymedia" und den gesamten Inhalt des Verzeichnisses "Plugins" in das entpakte Instalationspaket für den ARM kopiert und dabei die vorhandenen Dateien überschrieben.
4. Instalation gestartet ...
siehe da es funktionierte ... und läuft auch heute noch ...
Gruß
Swifty
PS: sorry aber mein englisch ist nicht so gut, als dass ich das o.g. in englisch beschreiben könnte ...
Re: Install on Terastation Pro
Posted: Tue Feb 26, 2008 9:59 am
by Phil72
afaik, installer does not put an autostart script in case of reboot.
Re: Install on Terastation Pro
Posted: Sun Mar 16, 2008 5:31 pm
by beddo
afaik, installer does not put an autostart script in case of reboot.
Actually it does, it just doesn't work.
The installer created:
/etc/init.d/twonky
Code: Select all
#!/bin/sh
route add -net 224.0.0.0 netmask 240.0.0.0 dev eth0
cd /mnt/array1/twonky
/mnt/array1/twonky/twonkymedia &
It then dropped this at the end of /etc/init.d/rcS:
If you log in and run /etc/init.d/twonky the server starts fine.
The correct way to get things to autostart on the TS Pro2 is not to drop its own line in apparently. I did the same to get Twonky autostarting as per the instructions to get sshd autostarting.
In /etc/init.d/rcS search for:
Code: Select all
echo "** step3 **"
for cmd in diskmon.sh drivecheck.sh atalk.sh ftpd.sh httpd.sh smb.sh clientUtil_servd.sh lsprcvd.sh daemonwatch.sh cron.sh checkconfig.sh sshd.sh
do
exec_sh $cmd
done
Simply put in twonky:
Code: Select all
echo "** step3 **"
for cmd in diskmon.sh drivecheck.sh atalk.sh ftpd.sh httpd.sh smb.sh clientUtil_servd.sh lsprcvd.sh daemonwatch.sh cron.sh checkconfig.sh sshd.sh twonky
do
exec_sh $cmd
done
You might also want to delete/comment out the line that the twonky installer added just in case at some point that updates and starts working. No point in having it start twice!. Should be right at the bottom:
Save and reboot the TS. Voila, autostarting Twonky Services.