- Error
| Installing wTorrent on Gentoo |
|
|
| Written by Markus Ewald | |||
| Thursday, December 31 2009 19:23 | |||
|
If you want to download torrents on your Linux system, there are several clients to choose from. One of the nicest and fastest clients is rTorrent. It is full-featured, supports encryption, dynamic host table exchange and achieves fantastic download speeds. But its best feature probably is that it isn't bound to any windowing toolkit. You can install one of its GUI frontends to manage it on your fancy KDE 4 desktop machine, but you can also run it on a headless system and manage torrent from a text-only console. And if you happen to run it on a home server like me, there's wTorrent, a beaufitful AJAX-driven web frontend that allows you to manage your torrents in your browser.
Installing wTorrent isn't the easiest thing to do, so, as when I tried to get the best out of my SSD, I decided to write this small article explaining how to do it. I'm using Gentoo Linux, but it shouldn't be too hard to apply this article to another Linux distribution. 1. Set USE flagsMake sure you have the 'xmlrpc' and 'sqlite' USE flags set in your make.conf: Remember that if you have changed any use flags in your make.conf in this step, you'll need to emerge --deep --update --newuse world to bring any packages affected by your changes back in sync. 2. Configure PHPI'm assuming you have a working Apache installation with PHP enabled. PHP needs to be compiled with the 'sqlite' and 'pdo' USE flags enabled. The 'sqlite' USE flag is global and should be set in your /etc/make.conf while 'pdo' is a PHP-specific flag that can be set in /etc/portage/package.use like this: If you changed any flags, remember to get your system back in sync with its new USE flags by running emerge --deep --update --newuse world. 3. Install rTorrentIf rTorrent is run normally, it will terminate when the SSH shell exits. Luckily, Linux provides applications like dtach and screen which allow you to run a console application in a virtual screen from which you can detach your current console and re-attach to in a different session. Gentoo users can set up rTorrent to run as a daemon simply by adding the package-specific 'daemon' USE flag. This is best done in /etc/portage/package.use, eg. Then proceed to install rTorrent as usual, eg. After this, you can start rTorrent as a daemon using /etc/init.d/rtorrentd start and stop it again using /etc/init.d/rtorrentd stop. You can also add rTorrent to your system init script like any other daemon using rc-update add rtorrentd default. 4. Create User Account
You don't want to run rTorrent as root, of course. I haven't heard of a BitTorrent
client as an attack vector yet, but handing root rights on a golden plate to anyone
discovering such an exploit doesn't sound like a good idea anyway
The --system parameter turns this into a system group (a group not intended for normal users logging into the system.) Next comes the user account for rTorrent: As before, --system turns this into a system account, which means that its password will not expire and that it will not appear in lists if you use a graphical login, for example. We don't give it a password or login shell because it's not intended for normal users to login as. To set the user the daemonized rTorrent process will run as, edit /etc/conf.d/rtorrentd: 5. Create .rtorrent.rcrTorrent reads its configuration from a file called .rtorrent.rc in the directory of the user rTorrent is running as. Because we're using rTorrent as a daemon, we'll adapt rTorrent to read its configuration from a file in /etc instead. If you don't have an rtorrent.rc yet, start by downloading the example configuration file from rTorrent's website: Then, create a symlink to the file from where rTorrent looks for it: You can configure your rtorrent.rc to your liking, the only requirement being that you enable the SCGI xmlrpc interface as shown below. You can find some advice on optimizing your BitTorrent settings here: Optimize your BitTorrent Download Speed and here: rTorrent Performance Tuning. 6. Install mod_scgiTo allow wTorrent to connect to rTorrent, you need mod_scgi for Apache. Emerge it with: Then enable it in /etc/conf.d/apache2 by adding the following line after the other APACHE2_OPTS have been defined: As far as I understand it, mod_scgi connects to an SCGI socket and exposes it in Apache as an XML-RPC service. wTorrent connects to this XML-RPC service (from the server side, so you can restrict this service to the loopback adapter) to remote-control rTorrent. To establish this XML-RPC socket, add the following to your /etc/apache2/vhosts.d/default_vhost.include file: I used HTTP basic authentication as an additional security layer. Otherwise, any XML-RPC client running locally on the server would be able to control rTorrent without prior password authentication. To generate the .htpasswd file, do the usual: After this step (and after restarting Apache to apply the configuration changes, of course,) rTorrent can be queried via XML-RPC locally! 7. Install wTorrentI've used the current development trunk of wTorrent (Revision 100) for my test. However, there are some issues with its version of the XML-RPC PHP library: As ticket 373 in the rTorrent TRAC setup explains, rTorrent returns 64-bit integers which aren't understood by the XML-RPC PHP library. I've modified my wTorrent sources slightly:
You can download my patched build from here (also includes a separate patch file
detailing what I changed.) The rest is simple: fire up the wTorrent installer, enter your configuration (make sure the webserver can write to the Folder to save uploaded torrents and that rTorrent can write to the Default folder to save torrent data and everything should now work.
Use /RPC2 as the rTorrent SCGI folder, set rTorrent SCGI host to localhost and use an rTorrent SCGI port of 80 (as it's now connecting to Apache's XML-RPC bridge to SCGI provided by mod_scgi.)
|


. To change the user as whom rTorrent runs, edit /etc/conf.d/rtorrentd.
I recommend creating a special group and user account for rTorrent. If you're using
Comments
ben _at_ gross.me.uk is my email address
I don't have the time to personally tutor people, just try to follow the article and if you get stuck, post here.
localhost portage # cat /etc/portage/package.keywords
www-apache/mod_scgi ~x86
Indeed, I have it in my package.keywords as well. Maybe it was moved to ~amd64/~x86 after I wrote this, or more likely, it just slipped my mind ;)
It works great!
RSS feed for comments to this post