NETGEAR is aware of a growing number of phone and online scams. To learn how to stay safe click here.
Forum Discussion
super_poussin
May 17, 2010Virtuoso
New Transmission add-on thread
The previous thread was very long
time to open a new one and prepare the 2.0 :)
time to open a new one and prepare the 2.0 :)
920 Replies
Replies have been turned off for this discussion
- super_poussinVirtuoso2.04 is stable
2.10 goes back to beta so I will publish a 2.10b01 today - DiWaAspirant
Ennio wrote:
There is no interface, and the scripts refuse to run because of some errors:
/c/addons-config/Transmission/transtop.sh: line 27: unexpected EOF while looking for matching `)'
/c/addons-config/Transmission/transtop.sh: line 33: syntax error: unexpected end of file
just by the look of these errors, I already see the " ` " character being used where it should be " ' ".
Hi Ennio,
you have to replace the content of the transstart and transstop with what's provided in the "release note" http://www.readynas.com/forum/viewtopic.php?p=133300#p133300"
What's shipped in the package has been truncated.
I also take this opportunity to submit another improvement on these scripts: automatically pickup host, port, user and password from settings.json
This will ease deployment and avoid issues because one has forgotten to update these files with the right user, port and password.
The port is already retrieved in the TRANSMISSION startup script.
The only issue I see is when the password is encrypted in settings.json, can we pass the encrypted version to transmission-remote ?
Thanks - TeamYankeeAspirantAnyone know of an add-on for firefox that will enable me to add torrent from a URL link automatically ?
- DiWaAspirant
DiWa wrote:
I also take this opportunity to submit another improvement on these scripts: automatically pickup host, port, user and password from settings.json
This will ease deployment and avoid issues because one has forgotten to update these files with the right user, port and password.
The port is already retrieved in the TRANSMISSION startup script.
The only issue I see is when the password is encrypted in settings.json, can we pass the encrypted version to transmission-remote ?
Thanks
This is what I've setup (only the encrypted password is not working :( ):
File include-connect.sh
#!/bin/sh
# *************
# transmission connect
# *************
# Variables
#
# Path to transmission-remote
REMOTE="/usr/local/bin/transmission-remote"
# Port to acces transmission-remote
TRANSM_PORT=`cat /c/addons-config/Transmission/transmission-daemon/settings.json | grep "rpc-port" | awk -F " " '{ print $2 }' | awk -F "," '{ print $1 }'`
# User to acces transmission-remote
TRANSM_USER=`cat /c/addons-config/Transmission/transmission-daemon/settings.json | grep "rpc-username" | awk -F ": \"" '{ print $2 }' | awk -F "\"," '{ print $1 }'`
# pwd to acces transmission-remote
TRANSM_PWD=`cat /c/addons-config/Transmission/transmission-daemon/settings.json | grep "rpc-password" | awk -F ": \"" '{ print $2 }' | awk -F "\"," '{ print $1 }'`
# Options to be passed to transmission-remote
TRANSOPT="localhost:$TRANSM_PORT -n $TRANSM_USER:$TRANSM_PWD"
Then in transtart.sh
#!/bin/sh
# *************
# transmission start by super-poussin
# *************
#
. ./include-connect.sh
# *************
LIST=`cat /c/addons-config/Transmission/downloading.txt`
for ID in $LIST; do
$REMOTE $TRANSOPT --torrent $ID --start > /dev/null
done
If someone have an idea for the encrypted password it would be great
Thanks - nasaus1Aspirant.
- nasaus1Aspirant.
- super_poussinVirtuosoask tracker admin to add tansmission 2.11 in allowed cleint list
- nasaus1Aspirant.
- sphardy1Apprentice
nasaus1 wrote: I was just wondering how do can i access the status page of tranmission via WAN ... I tried to port forward 8181 on the router but didnt work :(
Then that is why you cannot access transmission outside your network. Check if your router is listed here: http://portforward.com and if so, follow the instructions - nasaus1Aspirant.
Related Content
NETGEAR Academy
Boost your skills with the Netgear Academy - Get trained, certified and stay ahead with the latest Netgear technology!
Join Us!