![]() |
HowTo.RtorrentWithRemoteGUI HistoryHide minor edits - Show changes to markup April 05, 2008, at 04:37 PM
by -- link to wTorrent howto
Added lines 62-64:
January 27, 2008, at 10:02 PM
by -- added link to OptwareRtorrentOnDebian
Changed lines 8-9 from:
to:
January 27, 2008, at 09:33 PM
by -- tested optware platforms in bullets
Added lines 5-6:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. Deleted lines 9-10:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. January 27, 2008, at 09:32 PM
by -- tested optware platforms in bullets
Deleted lines 4-5:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. Added lines 8-9:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. January 27, 2008, at 09:31 PM
by -- tested optware platforms in bullets
Changed lines 5-6 from:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. (I tested on MSS II which is using the cs05q3armel feed, unfortunately upto 0.7.9+r1027-1 the xmlrpc feature does not work on unslung or slugosbe) to:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc.
January 23, 2008, at 11:11 PM
by -- tested not working on unslung or slugosbe
Changed lines 5-6 from:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. (I tested on MSS II, unfortunately unslung rtorrent does not work too well. It should also work on slugosbe) to:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. (I tested on MSS II which is using the cs05q3armel feed, unfortunately upto 0.7.9+r1027-1 the xmlrpc feature does not work on unslung or slugosbe) November 02, 2007, at 05:49 PM
by -- slugosbe build problem fixed
Changed lines 5-8 from:
Optware rtorrent >= 0.7.9-2 supports xmlrpc. (I tested on MSS II, unfortunately unslung rtorrent does not work too well, and there is some problem with slugosbe toolchain on official build machine). On my local machine slugosbe rtorrent builds fine. Install and configuration instructions with optware rtorrent: to:
The example below uses optware rtorrent. Optware rtorrent ipk >= 0.7.9-2 supports xmlrpc. (I tested on MSS II, unfortunately unslung rtorrent does not work too well. It should also work on slugosbe) Install and configuration instructions (with optware rtorrent): November 01, 2007, at 09:10 PM
by -- edits
Changed lines 5-6 from:
Optware rtorrent >= 0.7.9-2 supports xmlrpc. to:
Optware rtorrent >= 0.7.9-2 supports xmlrpc. (I tested on MSS II, unfortunately unslung rtorrent does not work too well, and there is some problem with slugosbe toolchain on official build machine). On my local machine slugosbe rtorrent builds fine. Changed lines 44-54 from:
* download ntorrent distribution
* unpack the distribution
* make sure you have java 1.6 installed
*
to:
November 01, 2007, at 09:06 PM
by -- added
Added lines 1-57:
Recent rtorrent (>=0.7.5) provides remote command (xmlrpc) access so you don't have to use the ncurses interface. This is useful when someone in your family is not familiar with SSH command line, but you still would like to use rtorrent on your always-on box. You can use a GUI client to manage torrents download from Windows, Linux or Mac. The GUI client does not need to be running all the time. One such client is ntorrent, written in java. Optware rtorrent >= 0.7.9-2 supports xmlrpc. Install and configuration instructions with optware rtorrent:
# ipkg update
# ipkg install rtorrent
# ipkg install lighttpd
# (add mod_scgi and config RPC mount point to /opt/etc/lighttpd.conf), below is the diff after I made the change
--- lighttpd.conf.dist 2007-10-30 17:57:18.000000000 +0000
+++ lighttpd.conf 2007-11-01 20:31:39.000000000 +0000
@@ -33,6 +33,7 @@
# "mod_expire",
# "mod_secdownload",
# "mod_rrdtool",
+ "mod_scgi",
"mod_accesslog" )
## a static document-root, for virtual-hosting take look at the
@@ -319,3 +320,13 @@
#include_shell "echo var.a=1"
## the above is same as:
#var.a=1
+
+scgi.server = (
+"/RPC2" => (
+ "127.0.0.1" => (
+ "host" => "127.0.0.1",
+ "port" => 5000,
+ "check-local" => "disable"
+ )
+ )
+)
# (add the following line to ~/.rtorrent.rc)
scgi_port = localhost:5000
Now on your client machine, * download ntorrent distribution
* unpack the distribution
* make sure you have java 1.6 installed
*
|