Difference between pages "Package:Rtorrent" and "Package:Rutorrent"

From Funtoo
(Difference between pages)
Jump to navigation Jump to search
 
m
 
Line 1: Line 1:
{{Ebuild
{{Ebuild
|Summary=BitTorrent Client using libtorrent
|Summary=ruTorrent is a front-end for the popular Bittorrent client rTorrent
|CatPkg=net-p2p/rtorrent
|CatPkg=www-apps/rutorrent
|Homepage=http://libtorrent.rakshasa.no/
|Homepage=http://code.google.com/p/rutorrent/
}}
}}
{{warning|this page is untested, and a work in progress.}}
{{PageNeedsUpdates}}
Rtorrent is a command line bittorrent client.


===Installation===
rutorrent is a front end to {{package|net-p2p/rtorrent}} and is designed to look like utorrent =D
if you intend to use rtorrent with {{package|www-apps/rutorrent}} or another front end make sure you emerge with the xmlrpc flag. (for now we'll also throw in the daemon until proven its not needed. the daemon is strange as its implemented in screen?  its probably so you can attach/detach anywhere infinite times.)
 
{{console|body=###i## echo "net-p2p/rtorrent xmlrpc daemon" >> /etc/portage/package.use #xmlrpc use flag for web interface.
{{console|body=###i## emerge www-apps/rutorrent}}
###i## emerge rtorrent}}
 
===prereqs===
*Install your web server {{package|www-servers/nginx}}, and get {{package|dev-lang/php}} with the fpm use flag running first.
*you must turn on scgi_pass within rtorrents.
 
===configuration===
first figure out what php you're using
 
{{console|body=###i##eselect php list fpm
[1]  php5.5 *
###i## eselect php list cgi
[1]  php5.5 *
###i## eselect php list apache2
[1]  php5.5 *
###i## eselect php list cli
[1]  php5.5 *
}}
 
edit the respective php.ini
 
were going to configure for nginx.


===Configuration===
=== optional security lock down stuff ===
The $USER should be changed to the torrent user you wish to download as.
{{warning|possibly broken, untested}}
{{file|name=/etc/conf.d/rtorrentd|lang=|desc=select user|body=
Edit the open_basedir in
USER="$USER"
/etc/php/fpm-php5.5/php.ini
{{file|name=/etc/php/fpm-php5.5/php.ini|lang=|desc=php basedir|body=
open_basedir = /var/www/localhost/htdocs/rutorrent/conf:/var/www/localhost/htdocs/rutorrent/php:/var/www/localhost/htdocs/rutorrent/
}}
}}


====Example====
=== nginx config===
logged in as the torrent user:
{{file|name=/etc/nginx/sites-available/localhost|lang=|desc=nginx configuration|body=
{{console|body=###i## cd
server {
###i## wget https://gist.githubusercontent.com/bryanjswift/1525912/raw/34fe28d70709e6b12840bcede3b82e5ed2abccce/.rtorrent.rc}}
listen 127.0.0.1:80;
~/.rtorrent.rc is now an example & running config.
server_name localhost;


===xml rpc===
          location /rutorrent {
{{file|name=~/.rtorrent.rc|lang=|desc=turn on xml rpc|body=
              include scgi_params;
scgi_port = localhost:5000
              scgi_pass localhost:5000;
          }
}
}}
}}


then start nginx
{{console|body=###i## /etc/init.d/nginx restart}}
point browser to
http://127.0.0.1/rutorrent
or
http://localhost/rutorrent
{{note|tested without rtorrent running, and without editing the php.ini, web app runs fine.}}
{{PageNeedsUpdates}}
{{EbuildFooter}}
{{EbuildFooter}}

Revision as of 06:25, March 8, 2015

Rutorrent

   Tip

We welcome improvements to this page. To edit this page, Create a Funtoo account. Then log in and then click here to edit this page. See our editing guidelines to becoming a wiki-editing pro.


rutorrent is a front end to net-p2p/rtorrent and is designed to look like utorrent =D

root # emerge www-apps/rutorrent

prereqs

  • Install your web server www-servers/nginx, and get dev-lang/php with the fpm use flag running first.
  • you must turn on scgi_pass within rtorrents.

configuration

first figure out what php you're using

root #eselect php list fpm
[1]   php5.5 *
root # eselect php list cgi
[1]   php5.5 *
root # eselect php list apache2
[1]   php5.5 *
root # eselect php list cli
[1]   php5.5 *

edit the respective php.ini

were going to configure for nginx.

optional security lock down stuff

   Warning

possibly broken, untested

Edit the open_basedir in /etc/php/fpm-php5.5/php.ini

   /etc/php/fpm-php5.5/php.ini - php basedir
open_basedir = /var/www/localhost/htdocs/rutorrent/conf:/var/www/localhost/htdocs/rutorrent/php:/var/www/localhost/htdocs/rutorrent/

nginx config

   /etc/nginx/sites-available/localhost - nginx configuration
server {
	listen 127.0.0.1:80;
	server_name localhost;

           location /rutorrent {
               include scgi_params;
               scgi_pass localhost:5000;
           }
}

then start nginx

root # /etc/init.d/nginx restart

point browser to

http://127.0.0.1/rutorrent

or

http://localhost/rutorrent

   Note

tested without rtorrent running, and without editing the php.ini, web app runs fine.