This tutorial uses unsupported features of the IOMEGA Storcenter ix4-200d. It worked for me but use it at your own risk! It should work (again, it is unsupported) on the ix2 Storcenter as well.
Tutorial tested on IOMEGA Storcenter ix4-200d firmware 3.1.14.995
I explained in a previous post why I wanted to use rtorrent instead of the torrent client supplied with the storcenter.
There is a new developpment: thepiratebay.se switched to magnets only for file sharing: the version of rtorrent previously installed did not support magnets....
The good news is that the new rtorrent (0.9.1) does support IP filtering natively!
The problem is it was difficult to compile for the storcenter as the gcc toolchain available on the storcenter is very old... but no worries, I compiled it for you!
1. SSH into your NAS
See my other post: How to ssh into your Iomega StorCenter ix4-200d
2. Install the software
See my other post here to setup at the minimum ikg and ipkg-opt. Then:
ipkg-opt install lighttpd ipkg-opt install screen
Then, get my pre-compiled version of rtorrent-0.9.1 (works on Iomega Storcenter ix4-200d):
if you want to compile it yourself for a strange architecture, you might want to look at section 3 of my other post How to solve the "undefined reference to '__sync_sub_and_fetch_4'" compilation problem
Warning: this is going to override the following files:
/opt/etc/rtorrent.conf /opt/etc/init.d/S99rtorrent /opt/lib/libtorrent.14.0.3 /opt/lib/libtorrent.14 /opt/bin/rtorrentMake sure you saved everything that needed to be saved before running it!
cd /opt/tmp/ wget http://dl.dropbox.com/u/50398581/rtorrent-0.9.1/rtorrent-0.9.1-package.tar.gz cd / tar -xvf /opt/tmp/rtorrent-0.9.1-package.tar.gz
If you don't want to connect remotely to rtorrent to manage it from you computer, you can skip the rest of this section...
Install nTorrent on your computer http://code.google.com/p/ntorrent/
Install xml-rpc on the NAS:
ipkg install optware-devel ipkg install libcurl-dev cd /opt/tmp/ svn checkout http://xmlrpc-c.svn.sourceforge.net/svnroot/xmlrpc-c/stable xmlrpc-c cd xmlrpc-c/ ./configure --prefix=/opt make make installNote: ou can choose something other that nTorrent. Please give me you feedback in the comments if you do.
3. Configure the software
Fix path and other info in rtorrent.conf.
This is also where you want to disable remote access if you don't want it, comment the line:
scgi_port = localhost:5000
If you want to use remote acces, you need to:
vi /opt/etc/lighttpdlighttpd.confbetween
# "mod_rrdtool",and
"mod_accesslog" )add
"mod_scgi",and at the end add:
scgi.server = ( "/RPC2" => ( "127.0.0.1" => ( "host" => "127.0.0.1", "port" => 5000, "check-local" => "disable" ) ) )Security warning: if you follow these steps, anybody that can access port 8081 of you NAS will be able to send commands to rtorrent! You want to make sure that this port is only accessible from your local network.
4. Ip filtering
a. download the file
Ip filtering support is build into rtorrent-0.9.1, but you still need to configure the download of the filter files:
vi /etc/cron.daily/rtorrent_ipfilter
#!/bin/sh cd /mnt/pools/A/A0/torrents/rtorrent/ipfilter/ wget http://list.iblocklist.com/?list=bt_level1 mv index.html\?list\=bt_level1 level1new.gz gunzip level1new.gz sed 's/^.*:\([^:]*\)$/\1/g' level1new | grep -v '^#' > level1new_2 rm level1 mv level1new level1 rm level1_2 mv level1new_2 level1_2then:
mkdir /mnt/pools/A/A0/torrents/rtorrent/ipfilter/ cd /etc/cron.daily/ chmod a+x rtorrent_ipfilter ./rtorrent_ipfilter
b. if not already done, make sure the cron daemon is started at boot
The cron daemon is not started at boot by default....
You can start it manually:
/etc/init.d/cron start
But to have it start up every time at boot, we need to add the line:
/etc/init.d/cron start >> /opt/init-opt.logto our /opt/init-opt.sh script.
See my other post How to run a program at boot on the Iomega Storcenter NAS to see how it works!
5. Test your setup
/opt/bin/rtorrent -n -o import=/opt/etc/rtorrent.confif you get:
rtorrent: Fault occured while inserting xmlrpc call.did you install xmlprc correctly? is ld.so.conf updated correctly? did you run ldconfig?
to connect to the running instance:
/opt/bin/screen -r rtorrentand kill the terminal (putty) to exit or press Ctrl-a d. For remote access: you can start lighthttpd on the NAS
/opt/etc/init.d/S80lighttpd startand then start nTorrent on your computer and connect to your NAS port 8081 (by default) on path /RPC2.
6. Get rtorrent to start automatically on reboot
Follow the tutorial How to run a program at boot on Iomage Strocenter You just need to add the following lines to the script:
/opt/etc/init.d/S80lighttpd start >> /opt/init-opt.log /opt/etc/init.d/S99rtorrent start >> /opt/init-opt.logIf you have another brand of NAS (or a regular linux OS), just try to link the startup scripts to /etc/rc2.d/ like ou would normally do an a linux box:
ln -s /opt/etc/init.d/S80lighttpd /etc/rc2.d/S80lighttpd ln -s /opt/etc/init.d/S99rtorrent /etc/rc2.d/S99rtorrent
7. How to deal with magnet links
I suggest to create a /whereever/rtorrent/magnets like /whereever/rtorrent/torrents and /whereever/rtorrent/download.
And then:
cd /whereever/rtorrent vi allmagnets.shand add:
#!/bin/bash for f in magnets/* do echo "Processing $f" CONTENT=`cat "$f" | sed s/^URL=// | grep -v '\[InternetShortcut\]' | tr -d '\r'` [[ "$CONTENT" =~ xt=urn:btih:([^&/]+) ]] && echo "d10:magnet-uri${#CONTENT}:${CONTENT}e" > "torrents/meta-${BASH_REMATCH[1]}.torrent" && rm "$f" done
chmod a+x allmagnet.shAnd then, add a cron to run this program every 5 minutes:
vi /etc/cron.d/magnetsand add:
# convert magnets to torrents every 5 minutes 1,6,11,16,21,26,31,36,41,46,51,56 * * * * root cd /mnt/pools/A/A0/data/rtorrent/ && /mnt/pools/A/A0/data/rtorrent/allmagnets.sh
Make sure the cron daemon is running!!! (see point 4.b above)
Enjoy!
A stupid question ,I followed thes procedure for my Iomega .. but how do I
ReplyDelete"start nTorrent on your computer and connect to your NAS port 8081 (by default) on path /RPC2." ?
I have U torrent on my pc .. but want to shut it down and let the torrent running on the NAS.
I see no "add device (non android / apple) " in the selection screen ..
regards
Johan
what you should install is nTorrent, available at:
Deletehttp://code.google.com/p/ntorrent/
it is a GUI for rtorrent. uTorrent is something else....
nice, I need to try this asap. Manually changing magnets to torrents is BS! Thank you for this! I don't know why Iomega is not releasing an update for this...
ReplyDeleteThanks for the iblocklist hint, never knew about this before! Also, rtorrent-0.9.2 seems to contain support for Magnet-URIs, yay!
ReplyDeleteOh, and your sed-string to format the ipfilter list took way to long on my system (over 1 minute) and misses a few spots. Here's a shorter variant:
$ wget http://list.iblocklist.com/?list=bt_level1 -O bt_level1.gz
$ time gzip -dc bt_level1.gz | cut -d: -f2 > bt_level1.txt
real 0m2.425s
user 0m0.776s
sys 0m0.496s
;-)
libidn.so.11 is missing... How to install it?
ReplyDeleteI get "configure: error: no acceptable C compiler found in $PATH"
When trying to execute "./configure --prefix=/opt".