How add the support of "Transmission" torrent downloader on a IB-NAS-4220
Posted by Cereal
Wednesday, March 17, 2010 7:00:00 AM
Rate this Content
0
0 Votes
How add the support of "Transmission" torrent downloader on a IB-NAS-4220
- Download this optware package ibnas-4220-optware-t-hd-020209.zip.
- Uncompress the content to "\\[NAS]\public\applications\new_software".
- Reboot IB-NAS-4220 box.
- Logon on NAS with "Putty"
- Kill all transmission daemon.
killall transmission-daemon
- Update "Transmission" package.
ipkg update transmission
- Start "Transmission" daemon
Option 1 (whitout login)
transmission-daemon -t -g /opt/Transmission -c /mnt/md1/public/bt_auto_load
Option 2 (with login)
transmission-daemon -t -u [username] -v [pasword] -g /opt/Transmission -c /mnt/md1/public/bt_auto_load
-
Access web page from URL.
http://[IP of NAS]:9091/transmission/web/
- Upload you new torrent and test.
- The files are store in directory \\[NAS]\public\btdownload.

Start "transmission daemon" during boot of IBNAS
- Create a new text file with name "S210loadtransmission" in \\[IB-NAS]\public\optware\etc\init.d.
- If you receive a access denied type this command :
chmod -R 777 /mnt/[drive]/public/optware/etc/init.d/
- Add the content of scripts bellow.
- Convert file from DOS format to Unix format with command :
dos2unix /mnt/[drive]/public/optware/etc/init.d/S210loadtransmission
- Set permission to file with command :
chmod 777 /mnt/[drive]/public/optware/etc/init.d/S210loadtransmission
#!/bin/sh
#
# Startup script for Transmission Torrent Downloader
#
# Kill daemon if exist
killall transmission-daemon
# Start Transmission daemon
transmission-daemon -t -g /opt/Transmission -c /mnt/md1/public/bt_auto_load
Simple-Tech.info