Best Torrent Client For Headless Server

Rtorrent is for me the most powerful torrent client: Powerful command line interface, can handle 5000+ torrents, with several possible web interfaces as Wtorrent or Rutorrent for my 2 favorites, with multi user support, etc but can be difficult to install 3) Transmission Bitorrent.

One of the most enjoyable benefits to have its own server might come from the ease to download any torrents (Especially some free GNU/Linux distribution) through a nice web interface accessible anywhere and then just go home and have your torrents waiting for you.

  • The Best BitTorrent Clients for 2019. BitTorrent is a powerful protocol for downloading everything from perfectly legit content to the shadiest stuff on the web.
  • It's the best client for racing because of this, but it isn't as stable as rTorrent/Transmission and the plugins are not very consistent. Some only work with the wui, some only work with the gui. It's pretty feature-rich but only if you can get the plugins working correctly. I've heard the max number of torrents it can handle is around 2k.

The 3 most popular torrents clients with Web Interface are Deluge, Rtorrent and Transmission. Let me tell you what are my preferences.

1) Deluge Torrent:

Best

Deluge Torrent is for me the best compromise between a very powerful torrent client (like Rtorrent) and a very simple torrent client (Like Transmission).

Deluge’s performance is very good as I used to seeds 3000+ torrents of Creative Commons content (From Joomla) when I was promoting .ogg files on the platform, with a fancy web interface, good support and yet easy to install and configure.

2) Rtorrent

Rtorrent is for me the most powerful torrent client: Powerful command line interface, can handle 5000+ torrents, with several possible web interfaces as Wtorrent or Rutorrent for my 2 favorites, with multi user support, etc… but can be difficult to install…

3) Transmission Bitorrent
Transmission is for me the safe one, easy to install quite powerful and good enough (Nice command line interface, good Web UI, …) but a bit too simple with not enough options.

Arma

Ubuntu Headless Server

Deluge is basically my favourite client for either Server or Desktop on either Linux, Windows or even Mac and here is how to install it on your server.

Installation

As root user (su) type:

and accept the dependencies.

This will install the 1.3.3.2 version at this date on my Debian Stable system.

Configuration

To improve a bit the security and be more flexible, it’s better to create a dedicated deluge user to run this service and its dedicated log files. Still using root user (su), type:

and create deluge configuration file: (Still in root)

and copy/paste the following configuration:

And save (Using CTRL+X, then Y)

Best Torrent Client For Headless Server Download

Now, create the Init script to be able to start/stop the daemon easily with the configuration you

and copy/paste:

It will use the port 9092 in this case and thus you will have to open it into your router configuration to allow inbound connection. (Change the line 25 if you want to modify the port)

Arma

Then, make this script executable: (Still as root user)

add the script in your boot startup list:

and start it:

You should now have access to your working Deluge Torrent Web User Interface at http://myip:9092

The password will be “deluge”.

At your first login, a pop up will recommend you to change this password, just click Yes to do it.

Actually, if it is a strong enough hardware, you can run any GUI application that you'd like with vnc (like I do Ktorrent and aMule on my headless Arch server).
Here's how you do it:

1. Install basic xorg, a basic window manager and tight vnc on the headless server:

2. Run the server once so it will create ~/.vnc and setup passwords

Best Torrent Client For Headless Server Minecraft

3. Setup the vnc startup script (so you wont need to ssh and manually activate it after the headless reboots).
Call it vnc and put it in /etc/rc.d/
Dont forget to set it up to run at startup in rc.conf
replace daf666 with your username!

Headless Windows Server

#!/bin/bash

# general config
. /etc/rc.conf
. /etc/rc.d/functions

case '$1' in
start)
stat_busy 'Starting vncserver'
su daf666 -c '/usr/bin/vncserver'
if [ $? -gt 0 ]; then
stat_fail
else
add_daemon vnc
stat_done
fi
;;
stop)
stat_busy 'Stopping vncserver'
killall Xvnc
if [ $? -gt 0 ]; then
stat_fail
else
rm_daemon vnc
stat_done
fi
;;
restart)
$0 stop
sleep 3
$0 start
;;
*)
echo 'usage: $0 {start|stop|restart}'
esac

4. To setup openbox to run at startup insert 'openbox' in your ~/.vnc/xstartup

5. Reboot the headless

6. Install tightvnc on your desktop machine and connect to the headless: vncviewer 6.6.6.6:1 (replace with ur IP and screen num)

7. Install ktorrent or what ever.. then it will keep running after you disconnect