Transmission for TomatoUSB

These instructions are assuming you first followed http://gwyneth.blogspot.com/2012/03/installing-optware-on-tomatousb.html#links

Install Transmission:
ipkg -verbose_wget install transmission

Start Transmission. Specify location for config file.
/transmission-daemon -g /mnt/data/torrents/.config/transmission-daemon

This will create all the default configs that Transmission needs.

Check that it is running: http://192.168.1.1:9091/transmission/web/

Terminate Transmission
killall transmission-daemon

Create settings file with contents from online sample
wget http://www.3iii.dk/linux/optware/settings.json -O /mnt/data/torrents/.config/transmission-daemon/settings.json

Start Transmission with these new settings
/transmission-daemon -g /mnt/data/torrents/.config/transmission-daemon

Add the following to USB Support page > 'Run after mounting' to start transmission after usb mount.
if [ -d /mnt/Optware ]; then
 mount -o bind /mnt/Optware /opt
 transmission-daemon -g /opt/share/transmission/config
fi
 

References
http://airfart.blogspot.com/2010/11/how-to-install-transmission-optware-on.html
http://www.xtremecoders.org/forums/f76/guide-how-install-setup-transmission-tomato-56/

0 comments: