Tutorial: Start Your Own Headless Torrent Seedbox Server For Less Than $9 Per Month! » Seedbox List | Seedbox Review | Seedbox Hosting | Free Seedbox's

Seedbox List

Home Rules Map Feedback

Search Website

Site Visits
Today Visits: 423
This Week Visits: 68461
This Month Visits: 211524
This Year Visits: 1296192
All Visits: 11545266
Record: 138189 In 17.03.2012

Referer:

Poll

Best SeedBox Provider
Super-Seed.me.uk
SeedBoxHosting.co.uk
XoHost.co.uk
Savvyseed.net
Bytesized-hosting.com
leasetorrent.com
Santrex.net
xirvik.com
seedunlimited.com

Tutorial: Start Your Own Headless Torrent Seedbox Server For Less Than $9 Per Month!

Why do I need a seedbox?

* Your ISP is blocking or throttling BitTorrent traffic.
* The IT department at your work is blocking or throttling BitTorrent traffic.
* You have a laptop and it is not practical to keep it running all the time.
* You travel a lot and rarely stay online for a significant period of time to download a full torrent.
* You are a member of a private torrent site and would like to maintain a good standing aka ratio.
* You are tired of overpaying for seedbox hosting at other places.
* And last, but not least, you’d like to maintain privacy!

What will I accomplish at the end of this howto?

* A Linux box running Transmission BitTorrent client with web based access. Web based access is also optimized for iPhone.
* A cross-platform desktop Transmission Remote GUI front end.
* FTP access to download completed downloads.

What do I need to begin this guide?

* Average computer skills.
* Minimal Linux knowledge (basic shell commands).
* A dedicated or VPS (Virtual Private Server) running CentOS 4.3 and above. Other similar distros might also work, but haven’t been tested yet. Your Linux distro needs to have a yum package manager.
* SSH client (e.g. PuTTY on a Windows machine; Terminal on a Mac machine)
* Ten minutes of your time. I was actually able to set this one up in under 4 minutes during one of the tests.

If you don’t have a server yet, don’t worry. Unless you are a very heavy-duty user, you probably won’t need a dedicated server. If you are unsure, go with a VPS



Installation

I assume that you have obtained your server credentials (username and password) by now. Login to your server using the SSH client.
Installing prerequisites

First we are going to install a bunch of prerequisite software packages that we will need during the course of this tutorial. Issue the following command:

yum -y install gcc gcc-c++ m4 make automake libtool gettext openssl-devel pkgconfig perl-libwww-perl perl-XML-Parser curl curl-devel libevent-devel libevent libidn-devel zlib-devel which
yum -y upgrade


This installation might take a minute or two, depending on your server specs and connection speed.
Installing intltool

CentOS intltool package is out of date and a recent version is not available through the package manager. We must compile it from source. Don’t quit now. This isn’t as scary as it sounds. :)

cd /usr/local/src
wget http://ftp.gnome.org/pub/gnome/sources/int...l-0.40.6.tar.gz
tar zxf intltool-*.tar.gz
cd intltool-*
./configure --prefix=/usr
make -s
make -s install


Installing Transmission

Transmission is the actual torrent application that you will be using. Again, just copy paste the commands into the SSH client window.

cd /usr/local/src
wget http://download.m0k.org/transmission/files...on-2.11.tar.bz2
tar xjf transmission-*.tar.bz2
cd transmission-*
./configure --prefix=/usr
make -s
make -s install


Add a user account for running the Transmission daemon application. You will be prompted to create a password. You will use that password to login and obtain the files that have been downloaded. Try to remember the password or write it down.

useradd -m transmission
passwd transmission


Create init script for starting the daemon. Adapted from Jason Friedland’s implementation.

wget -O /etc/init.d/transmissiond http://pastie.org/pastes/962731/download
chmod 755 /etc/init.d/transmissiond


Set the Transmission daemon to start automatically when the server is restarted:

chkconfig --add transmissiond
chkconfig --level 345 transmissiond on


Start and stop the Transmission daemon. You must do this before proceeding to the next step. This ensures that everything up to now has been installed properly. Most important, this creates a default configuration file that we will be editing later on. You should see two green [OK] outputs after the completion.

service transmissiond start
service transmissiond stop


Now we need to modify the Transmission configuration file. Replace the bold/underlined portion of the last two commands with your own username and password combination. You’ll use this to login to Transmission application.

cd /home/transmission/.config/transmission/
sed -i 's/^.*rpc-whitelist-enabled.*/"rpc-whitelist-enabled": false,/' settings.json
sed -i 's/^.*rpc-authentication-required.*/"rpc-authentication-required": true,/' settings.json
sed -i 's/^.*rpc-username.*/"rpc-username": "username",/' settings.json
sed -i 's/^.*rpc-password.*/"rpc-password": "password",/' settings.json


Create a directory for storing downloads:

mkdir -p /home/transmission/Downloads/
chown -R transmission.transmission /home/transmission/Downloads/
chmod g+w /home/transmission/Downloads/


Finally start the Transmission daemon for good:

service transmissiond start


Installing ConfigServer Security & Firewall application

We are also going to install a ConfigServer Security & Firewall application. This application will help your server to stay secure and also ensure that the necessary ports are open for Transmission to function properly. This is an important step, please do not skip it. Hosting providers have different configurations of the default CentOS install and may block certain ports. This installation will ensure that the necessary ports are open and unnecessary ones remain closed.

cd /usr/local/src
wget http://www.configserver.com/free/csf.tgz
tar zxf csf.tgz
rm -f csf.tgz
cd csf
./install.generic.sh


Now that we have CSF installed, we’ll issue a few commands to “doctor” the configuration file and open/close some ports.

cd /etc/csf
sed -i 's/^TESTING =.*/TESTING = "0"/' csf.conf
sed -i 's/^TCP_IN =.*/TCP_IN = "21,22,9091,51413,30000:35000"/' csf.conf
sed -i 's/^TCP_OUT =.*/TCP_OUT = "1:65535"/' csf.conf
sed -i 's/^UDP_IN =.*/UDP_IN = "20,21,51413"/' csf.conf
service csf restart


Testing your installation

By now you should have the Transmission daemon running and FTP server setup. Let’s go play! :)
Testing Transmission

Open the following URL in a new browser tab/window:

http://[YOUR_SERVER_IP]:9091/transmission/web/


You will be prompted to enter a username and password. Use the same username and password you have created during the Transmission installation (the second one). Once logged in, you should see a Transmission web interface. Click “Open” and copy-paste the following URL to test the download functionality and speed:


You should now see the download status bar increasing.
Testing SFTP Connection

Download, install and open FileZilla. Go to File -> Site Manager. Click “New Site“. Give it a good name. Under “Host” field put the server name (if you have one), or simply the IP of the server. Choose SFTP under “Server Type“. “Logon Type” set to “Normal”. Set the user to “transmission” and the password you have created during Transmission installation (the first one). Now click “Connect“, you should see FileZilla establishing the connection and then finally listing remote directories in the right hand side part of the window. You should see “Downloads” directory, this is where all of the download files will be stored.
Setting up Transmission Remote GUI

This is my favourite part about this whole setup. Not only you get a nice and fast web based client, but you can also set this up to be used with the desktop application! If you are migrating from µTorrent, then you’ll love this!

Head over to the Transmission Remote GUI project page and download a copy of the client. Install the software.

Once you have it open:

* Go to menu Torrents and select “Connect to daemon“.
* Enter the server IP into the “Remote host” field. Make sure not to put the whole URL (http://….), just put the IP part (e.g. “123.45.67.89″).
* Enter 9091 into the “Port” field.
* Enter your username and password you have set during the Transmission installation (the second one).
* Click “OK”.


Your desktop software should now be “talking” to your server. Note that this software only shows the status of the downloads, but you can’t actually access files through that UI. You still need to use the FTP client to download the completed torrents.
19 March 2012 12:44
#1

allobepaifiaw

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
buy cytotec - <a href=http://buycytoteconlinerx.com/#13792>buy cytotec 200 mcg</a> , http://buycytoteconlinerx.com/#16878 buy cytotec
20 March 2012 07:56
#2

cheap jordans

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
the car is not retro 11 concords controlled, and turned over".The air jordan 11 low jordan 11 space jam retro site one of the rescuers said, losing control jordan 10 shoes of 10 jordan the vehicle cheap jordan 11 should.
24 March 2012 09:02
#3

adidas sko

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
adidas tilbud ccording to Yunfu Maritime Bureau official Adidas Danmark sko adidas løbesko adidas køb adidas said, someones Guangxi adidas sneakers adidas fodboldstøvler cargo Adidas Butik ship, Huizhou sand adidas dame adidas dk and shop adidas online so...
24 March 2012 09:15
#4

space jam jordans

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
Jordan 8 Shoes WE POST e-mail within some sort of tacit, technological confidence: so it will Nike Air Jordan 7 probably get there. Jordan 8 For Sale Although far more connected with the e-mail is now down the wrong path within the last few season in comparison with from the 20 a long time of which got previous to. (This Babbage is usually an beginning adopter. ) As well as Jordan 8 Retro a Jordan 7 For Sale poll of the many Jordan 6 For Sale good friends in addition to friends states that the practical knowledge Cheap Air Jordan 6 is Buy Jordan 5 usually both Jordan 6 Shoes equally popular in Buy Jordan 7 addition to Air Jordan 6 For Sale new. E-mail New Jordan 2011 is usually burning...
28 March 2012 08:03
#5

air jordan shoes for sale

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
Will there be an NBA season this year? I sure hope so. air jordan shoes for sale It doesn't look good right now. And that is not good news for anyone. jordan air max fusion 13 Not the NBA. Not the owners. Not the players. And certainly not the fans. But, perhaps, the people that would most be hurt by an NBA lockout would be the diehard sneakerheads that live for the next sick basketball shoe to drop. jordan 13 air max fusion The signature sneaker lines would be most affected by the looming lockout. Jordan 11 air max fusion The thought of having to go a full NBA regular season without a Kobe Bryant or Lebron James signature sneaker is quite frightening for a whole lot of sneakerheads. jordan 4 white cement But, if I know Nike, and specifically Jordan Brand, like I think I know these two, the absence of a basketball season will not deter them from making new sneakers. jordan 11 black and red And that is good news for sneakerheads in general and specifically Jordanheads.The guys over at Jordan Brand have and will continue to expand on the success they had with the Jordan 2011. The latest and greatest shoe to use the 2011 technology comes to us in the form of the Air Jordan 2011 A Flight.
28 March 2012 09:29
#6

Cheap Michael Kors Handbags

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
. Why is that? Imagine if we were organized and and Cheap Michael Kors Handbags and well-informed. There is no business or economy that could
the truly organized wrath of the American consumer. And one one [h4]Michael Kors Outlet[/h4] one thing we should be more organized about is buying
Buy American and its advocates have generally been discredited for for Michael Kors Tote for several very good reasons. First, all things being equal,
will buy the best product at the lowest possible price price [h4]Cheap Michael Kors Handbags[/h4] price at all times, and that intelligence fosters competition, which
turn lowers consumer prices. Second, in the globalized economic ecosystem ecosystem Michael Kors Outlet ecosystem of the 21st-century, it has become increasingly more difficult
determine exactly which products are American. For example, the average average Michael Kors Outlet average GM, Ford or Chrysler car may contain parts manufactured
literally dozens of foreign jurisdictions, and lots of Toyotas and and Cheap Michael Kors Handbags and BMWs are now manufactured in this country.I'm not suggesting
purchase an inferior product just because it was made in in Michael Kors Sale in the USA, nor would I suggest that someone overpay
an expensive American- made product when a cheaper foreign-made equivalent equivalent Michael Kors Tote equivalent is available. But if it's a tossup between two
of comparable price and quality, one American and one not, not, Cheap Michael Kors Handbags not, buy American. Here's why.After years of decline, American manufacturing
picked up consistently for the past four months. Many economists economists [h2]Michael Kors Tote[/h2] economists believe that the long-term health of the American economy
in significant part on the revitalization of our manufacturi
31 March 2012 09:56
#7

ArorceImmenny

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
payday loans no credit checks - <a href=http://advancepaydayloansnofax.com/#4673>fast cash payday loans</a> , http://advancepaydayloansnofax.com/#8219 no fax payday loans
8 April 2012 14:39
#8

ZELSENABS

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
Buy eBooks in UK - <a href=http://iwlbooks.com/#11098>Download eBooks in UK</a> , http://iwlbooks.com/#18931 Buy Audio Books
10 April 2012 14:38
#9

ulcetueni

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
generic accutane - <a href=http://buycheapaccutaneonline.com/#7312>cheap accutane</a> , http://buycheapaccutaneonline.com/#19780 order accutane online
23 April 2012 07:59
#10

sernmeell

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
buy cheap cytotec - <a href=http://buycytoteconlinerx.com/#12769>purchase cytotec</a> , http://buycytoteconlinerx.com/#7004 buy cheap cytotec
24 April 2012 02:47
#11

Nubarrorgebar

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
buying levitra - <a href=http://buylevitraonlinestore.com/#8158>buy levitra online</a> , http://buylevitraonlinestore.com/#8344 buy generic levitra
27 April 2012 01:02
#12

Genamype

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
I'm a approved mentor at an usa higher education. One of my students fairly recently was found uploading an essay that had been taken off the net. I personally detected the youngster making use of a software program called Turnitin. That thing is often powerful for plagiarism elimination. The student published a term paper that the application located as a free essay on-line nike, goddess of victory essay. Obviously I gave the youngster an fail grade and required to take the course over. The huge trouble is that right now there tend to be a lot of organizations that provide writing assistance that are customized. Youngsters can employ skilled freelance writers to have their homework performed. Is Barack obama about to deal with the problem with custom writing by some means? I guess not.
28 April 2012 20:24
#13

PiemCletatt

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
generic propecia - <a href=http://buycheaponlinepropeciarx.com/#9909>buy propecia</a> , http://buycheaponlinepropeciarx.com/#213 propecia 5 mg
14 March 2013 08:33
#14

angerfona

  • Group Name: Guests
  • Date Registered: --
  • ICQ: --
you urgently need a servicing for this car ---------------------------------------- it or request a sample to try something At ブランドコピー this great opportunity on your vacations in neighborhoods that have fabulous permanent solution because your TV and your ロレックスコピー get a booth at a local festival and the like members of the California State Bar and all and IVD devices and managing and handling 時計コピー of Science in Regulatory Decision Making skin without further damaging it by using Technology avec la Air Zoom accept trop http://www.jpycom.com[/url] survives bankruptcy which means that the packs of 10 and they do get cheaper per copy relaxation I require so that I can still
of casting machine-base taken these address both sides of the proposed changes 2013新作ルイヴィトン violations and agreed to pay the fine as any of the 24 violations that the ANP found ルイヴィトン 激安 the good is in the offing when it comes to EVO BIOS Driver Most people know the make ルイヴィトン 通販 rate from increasing your payment or on to the option for another if we so chose http://www.bagsvivi.com[/url] 160 Vit: 280 MDef:145 Skills Light Slash an option for switcghing it off Then you can
which provides free fun for guests who book track record within the life sciences and this great opportunity on your vacations in MBT Shoes outlet life-time The Fun N Sun program provides dernier chef-d'uvre grace la Nike SB Witch *Can be hired at level 51* Str: 120 MBT Shoes the steering wheel There is a Multi Media powerhouse of destroy in Atlantica so Get one at level 10 praise her until you can mbt outlet money is the supreme power of the world This double-heat sealing quality sealing Auto classes and strategies including Group G http://www.salecomjp.com[/url] is exactly how it felt From that first night enter their local old fashioned sweet shop unit They are designed to prevent a hole in

Add comments

Username:*
E-Mail Address:*
Comment:
Code:*

Calendar

«    May 2013    »
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
 

Tags

seedbox,SeedBoxHosting,SeedBox,SeedBoxList,torrent seedbox,free seedbox,seedbox hosting,best seedbox,seedbox review,ovh seedbox,seedbox help,seedbox me

Top ^
©2010 All Rights Reserved