<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Setuix Networks &#38; Solutions</title>
	<atom:link href="http://setuix.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://setuix.com</link>
	<description>Just another WordPress site</description>
	<lastBuildDate>Sat, 19 May 2012 17:16:46 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to install Transmission on Ubuntu</title>
		<link>http://setuix.com/2012/05/19/how-to-install-transmission-on-ubuntu/</link>
		<comments>http://setuix.com/2012/05/19/how-to-install-transmission-on-ubuntu/#comments</comments>
		<pubDate>Sat, 19 May 2012 17:15:47 +0000</pubDate>
		<dc:creator>zero</dc:creator>
				<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://setuix.com/?p=271</guid>
		<description><![CDATA[How to install Transmission on Ubuntu for multiple users This tutorial will guide you to install and run Transmission for multiple users on Ubuntu 12.04 &#8220;Precise Pangolin&#8221; and Ubuntu 11.10 &#8220;Oneiric Ocelot&#8221;. 1. SSH into your box # sudo apt-get transmission-daemon 2. Run &#38; Configure Transmission # transmission-daemon Now you will notice a &#8220;transmission-daemon&#8221; folder has been created in your /home/user/.config. Kill transmission-daemon so that you can edit the conf file in .config/transmission-daemon. nano settings.json This is what you will see. I have highlighted what you should change in bold: { &#8220;alt-speed-down&#8221;: 50, &#8220;alt-speed-enabled&#8221;: false, &#8220;alt-speed-time-begin&#8221;: 540, &#8220;alt-speed-time-day&#8221;: 127, &#8220;alt-speed-time-enabled&#8221;: false, &#8220;alt-speed-time-end&#8221;: 1020, &#8220;alt-speed-up&#8221;: 50, &#8220;bind-address-ipv4&#8243;: &#8220;0.0.0.0&#8243;, &#8220;bind-address-ipv6&#8243;: &#8220;::&#8221;, &#8220;blocklist-enabled&#8221;: false, &#8220;blocklist-url&#8221;: &#8220;http://www.example.com/blocklist&#8221;, &#8220;cache-size-mb&#8221;: 4, &#8220;dht-enabled&#8221;: false, &#8220;download-dir&#8221;: &#8220;/home/username/torrents/files&#8221;, &#8220;download-queue-enabled&#8221;: true, &#8220;download-queue-size&#8221;: 5, &#8220;encryption&#8221;: 1, &#8220;idle-seeding-limit&#8221;: 30, &#8220;idle-seeding-limit-enabled&#8221;: false, &#8220;incomplete-dir&#8221;: &#8220;/home/username/torrents/files&#8221;, &#8220;incomplete-dir-enabled&#8221;: false, &#8220;lpd-enabled&#8221;: false, &#8220;message-level&#8221;: 2, &#8220;peer-congestion-algorithm&#8221;: &#8220;&#8221;, &#8220;peer-limit-global&#8221;: 250, &#8220;peer-limit-per-torrent&#8221;: 60, &#8220;peer-port&#8221;: 51413, &#8220;peer-port-random-high&#8221;: 65535, &#8220;peer-port-random-low&#8221;: 49152, &#8220;peer-port-random-on-start&#8221;: false, &#8220;peer-socket-tos&#8221;: &#8220;default&#8221;, &#8220;pex-enabled&#8221;: false, &#8220;port-forwarding-enabled&#8221;: true, &#8220;preallocation&#8221;: 1, &#8220;prefetch-enabled&#8221;: 1, &#8220;queue-stalled-enabled&#8221;: true, &#8220;queue-stalled-minutes&#8221;: 30, &#8220;ratio-limit&#8221;: 2, &#8220;ratio-limit-enabled&#8221;: false, &#8220;rename-partial-files&#8221;: true, &#8220;rpc-authentication-required&#8221;: true, &#8220;rpc-bind-address&#8221;: &#8220;0.0.0.0&#8243;, &#8220;rpc-enabled&#8221;: true, &#8220;rpc-password&#8221;: &#8220;this-is-my-password&#8221;, &#8220;rpc-port&#8221;: 9095, &#8220;rpc-url&#8221;: &#8220;/transmission/&#8221;, &#8220;rpc-username&#8221;: &#8220;test&#8221;, &#8220;rpc-whitelist&#8221;: &#8220;*.*.*.*&#8221;, &#8220;rpc-whitelist-enabled&#8221;: true, &#8220;scrape-paused-torrents-enabled&#8221;: true, &#8220;script-torrent-done-enabled&#8221;: false, &#8220;script-torrent-done-filename&#8221;: &#8220;&#8221;, &#8220;seed-queue-enabled&#8221;: false, &#8220;seed-queue-size&#8221;: 10, &#8220;speed-limit-down&#8221;: 100, &#8220;speed-limit-down-enabled&#8221;: false, &#8220;speed-limit-up&#8221;: 100, &#8220;speed-limit-up-enabled&#8221;: false, &#8220;start-added-torrents&#8221;: true, &#8220;trash-original-torrent-files&#8221;: false, &#8220;umask&#8221;: 18, &#8220;upload-slots-per-torrent&#8221;: 14, &#8220;utp-enabled&#8221;: true, &#8220;watch-dir&#8221;: &#8220;/home/username/torrents/watch&#8221;, &#8220;watch-dir-enabled&#8221;: true } Explanation &#8220;dht-enabled&#8221;: false, &#60; As with all private trackers, this should be turned off. &#8220;pex-enabled&#8221;: false, &#60; See above. &#8220;rpc-authentication-required&#8221;: true, &#60; Enable password authentication for multiple users. &#8220;rpc-password&#8221;: ...]]></description>
			<content:encoded><![CDATA[<h3>How to install Transmission on Ubuntu for multiple users</h3>
<p>This tutorial will guide you to install and run Transmission for multiple users on Ubuntu 12.04 &#8220;Precise Pangolin&#8221; and Ubuntu 11.10 &#8220;Oneiric Ocelot&#8221;.</p>
<h5>1. SSH into your box</h5>
<ul>
<li># sudo apt-get transmission-daemon</li>
</ul>
<h5>2. Run &amp; Configure Transmission</h5>
<p># transmission-daemon</p>
<p>Now you will notice a &#8220;transmission-daemon&#8221; folder has been created in your /home/user/.config. Kill transmission-daemon so that you can edit the conf file in .config/transmission-daemon.</p>
<ul>
<li>nano settings.json</li>
</ul>
<p>This is what you will see. I have highlighted what you should change in bold:</p>
<p>{<br />
&#8220;alt-speed-down&#8221;: 50,<br />
&#8220;alt-speed-enabled&#8221;: false,<br />
&#8220;alt-speed-time-begin&#8221;: 540,<br />
&#8220;alt-speed-time-day&#8221;: 127,<br />
&#8220;alt-speed-time-enabled&#8221;: false,<br />
&#8220;alt-speed-time-end&#8221;: 1020,<br />
&#8220;alt-speed-up&#8221;: 50,<br />
&#8220;bind-address-ipv4&#8243;: &#8220;0.0.0.0&#8243;,<br />
&#8220;bind-address-ipv6&#8243;: &#8220;::&#8221;,<br />
&#8220;blocklist-enabled&#8221;: false,<br />
&#8220;blocklist-url&#8221;: &#8220;http://www.example.com/blocklist&#8221;,<br />
&#8220;cache-size-mb&#8221;: 4,<br />
<strong>&#8220;dht-enabled&#8221;: false,</strong><br />
<strong>&#8220;download-dir&#8221;: &#8220;/home/username/torrents/files&#8221;,</strong><br />
&#8220;download-queue-enabled&#8221;: true,<br />
&#8220;download-queue-size&#8221;: 5,<br />
&#8220;encryption&#8221;: 1,<br />
&#8220;idle-seeding-limit&#8221;: 30,<br />
&#8220;idle-seeding-limit-enabled&#8221;: false,<br />
<strong>&#8220;incomplete-dir&#8221;: &#8220;/home/username/torrents/files&#8221;,</strong><br />
&#8220;incomplete-dir-enabled&#8221;: false,<br />
&#8220;lpd-enabled&#8221;: false,<br />
&#8220;message-level&#8221;: 2,<br />
&#8220;peer-congestion-algorithm&#8221;: &#8220;&#8221;,<br />
&#8220;peer-limit-global&#8221;: 250,<br />
&#8220;peer-limit-per-torrent&#8221;: 60,<br />
&#8220;peer-port&#8221;: 51413,<br />
&#8220;peer-port-random-high&#8221;: 65535,<br />
&#8220;peer-port-random-low&#8221;: 49152,<br />
&#8220;peer-port-random-on-start&#8221;: false,<br />
&#8220;peer-socket-tos&#8221;: &#8220;default&#8221;,<br />
<strong>&#8220;pex-enabled&#8221;: false,</strong><br />
&#8220;port-forwarding-enabled&#8221;: true,<br />
&#8220;preallocation&#8221;: 1,<br />
&#8220;prefetch-enabled&#8221;: 1,<br />
&#8220;queue-stalled-enabled&#8221;: true,<br />
&#8220;queue-stalled-minutes&#8221;: 30,<br />
&#8220;ratio-limit&#8221;: 2,<br />
&#8220;ratio-limit-enabled&#8221;: false,<br />
&#8220;rename-partial-files&#8221;: true,<br />
<strong>&#8220;rpc-authentication-required&#8221;: true,</strong><br />
&#8220;rpc-bind-address&#8221;: &#8220;0.0.0.0&#8243;,<br />
&#8220;rpc-enabled&#8221;: true,<br />
<strong>&#8220;rpc-password&#8221;: &#8220;this-is-my-password&#8221;,</strong><br />
&#8220;rpc-port&#8221;: 9095,<br />
&#8220;rpc-url&#8221;: &#8220;/transmission/&#8221;,<br />
<strong>&#8220;rpc-username&#8221;: &#8220;test&#8221;,</strong><br />
<strong>&#8220;rpc-whitelist&#8221;: &#8220;*.*.*.*&#8221;,</strong><br />
&#8220;rpc-whitelist-enabled&#8221;: true,<br />
&#8220;scrape-paused-torrents-enabled&#8221;: true,<br />
&#8220;script-torrent-done-enabled&#8221;: false,<br />
&#8220;script-torrent-done-filename&#8221;: &#8220;&#8221;,<br />
&#8220;seed-queue-enabled&#8221;: false,<br />
&#8220;seed-queue-size&#8221;: 10,<br />
&#8220;speed-limit-down&#8221;: 100,<br />
&#8220;speed-limit-down-enabled&#8221;: false,<br />
&#8220;speed-limit-up&#8221;: 100,<br />
&#8220;speed-limit-up-enabled&#8221;: false,<br />
&#8220;start-added-torrents&#8221;: true,<br />
&#8220;trash-original-torrent-files&#8221;: false,<br />
&#8220;umask&#8221;: 18,<br />
&#8220;upload-slots-per-torrent&#8221;: 14,<br />
&#8220;utp-enabled&#8221;: true,<br />
<strong>&#8220;watch-dir&#8221;: &#8220;/home/username/torrents/watch&#8221;,</strong><br />
<strong> &#8220;watch-dir-enabled&#8221;: true</strong><br />
}</p>
<h5>Explanation</h5>
<p><strong>&#8220;dht-enabled&#8221;: false, &lt; As with all private trackers, this should be turned off.</strong></p>
<p><strong></strong><strong>&#8220;pex-enabled&#8221;: false, &lt; See above.</strong><br />
<strong></strong></p>
<p><strong>&#8220;rpc-authentication-required&#8221;: true, &lt; Enable password authentication for multiple users.</strong></p>
<p><strong>&#8220;rpc-password&#8221;: &#8220;this-is-my-password&#8221;, &lt; Set a password.</strong></p>
<p><strong>&#8220;rpc-username&#8221;: &#8220;test&#8221;, &lt; Replace &#8220;test&#8221; with a username.</strong></p>
<p><strong></strong><strong>&#8220;rpc-whitelist&#8221;: &#8220;*.*.*.*&#8221;, &lt; Must follow exactly. Listens to all IPs.</strong></p>
<p><strong>&#8220;watch-dir&#8221;: &#8220;/home/username/torrents/watch&#8221;, &lt; Sets a watch folder. Dump your .torrents in there and it will auto add into Transmission.</strong></p>
<p><strong></strong><strong>&#8220;watch-dir-enabled&#8221;: true &lt; notice there is no comma after &#8220;true&#8221;. The last option has no comma, all other options have comma.</strong></p>
<p>For each account you want to create, start from instruction number 2 above.</p>
]]></content:encoded>
			<wfw:commentRss>http://setuix.com/2012/05/19/how-to-install-transmission-on-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to set up ruTorrent</title>
		<link>http://setuix.com/2012/05/17/how-to-set-up-rutorrent/</link>
		<comments>http://setuix.com/2012/05/17/how-to-set-up-rutorrent/#comments</comments>
		<pubDate>Thu, 17 May 2012 04:36:48 +0000</pubDate>
		<dc:creator>zero</dc:creator>
				<category><![CDATA[Wiki]]></category>
		<category><![CDATA[rtorrent]]></category>
		<category><![CDATA[rutorrent]]></category>

		<guid isPermaLink="false">http://setuix.com/?p=194</guid>
		<description><![CDATA[How to set up ruTorrent This tutorial will guide you through the setup of a fully-featured seedbox running on a Debian or Ubuntu system, including: libtorrent 0.13.0 rTorrent 0.9 ruTorrent Web UI (3.0) This guide has been tested with Debian 6 (x86_64) and Ubuntu 11.04 (x86_64). To start, access your VPS via SSH (as the root user) and do the following to update your platform and install some required dependencies: # apt-get update # apt-get install subversion build-essential automake libtool libcppunit-dev libcurl3-dev libsigc++-2.0-dev unzip unrar-free curl libncurses-dev # apt-get install apache2 php5 php5-cli php5-curl Enable scgi for Apache: # apt-get install libapache2-mod-scgi # ln -s /etc/apache2/mods-available/scgi.load /etc/apache2/mods-enabled/scgi.load Install XMLRPC: # mkdir /install;cd /install # svn checkout http://xmlrpc-c.svn.sourceforge.net/&#8230;mlrpc-c/stable xmlrpc-c # cd xmlrpc-c # ./configure &#8211;disable-cplusplus # make # make install Intall libtorrent: # cd /install # wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.2.tar.gz # tar xvf libtorrent-0.13.0.tar.gz # cd libtorrent-0.13.0 # ./autogen.sh # ./configure # make # make install Install rTorrent: # cd /install # wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.2.tar.gz # cd rtorrent-0.9.0 # ./autogen.sh # ./configure &#8211;with-xmlrpc-c # make # make install # ldconfig Create required directories: # mkdir /home/seeder1/rtorrent # mkdir /home/seeder1/rtorrent/.session # mkdir /home/seeder1/rtorrent/watch # mkdir /home/seeder1/rtorrent/download Setup .rtorrent.rc file (rTorrent config): # cd ~/ # wget http://kimsufi.fawked.net/speedtest/.rtorrent.rc # cp .rtorrent.rc /home/seeder1/ (Edit the settings in .rtorrent.rc, like max upload/download speed, max connected peers, etc, as needed.) Install ruTorrent: # cd /var/www # svn co http://rutorrent.googlecode.com/svn/trunk/rutorrent # cd /var/www/rutorrent/plugins # svn co http://rutorrent.googlecode.com/svn/trunk/plugins/rpc # chown -R www-data:www-data /var/www/rutorrent (to upgrade or if any plugins break in ...]]></description>
			<content:encoded><![CDATA[<p>How to set up ruTorrent</p>
<p>This tutorial will guide you through the setup of a fully-featured seedbox running on a Debian or Ubuntu system, including:</p>
<p>libtorrent 0.13.0<br />
rTorrent 0.9<br />
ruTorrent Web UI (3.0)<br />
This guide has been tested with Debian 6 (x86_64) and Ubuntu 11.04 (x86_64).</p>
<p>To start, access your VPS via SSH (as the root user) and do the following to update your platform and install some required dependencies:</p>
<p># apt-get update<br />
# apt-get install subversion build-essential automake libtool libcppunit-dev libcurl3-dev libsigc++-2.0-dev unzip unrar-free curl libncurses-dev<br />
# apt-get install apache2 php5 php5-cli php5-curl</p>
<p>Enable scgi for Apache:</p>
<p># apt-get install libapache2-mod-scgi<br />
# ln -s /etc/apache2/mods-available/scgi.load /etc/apache2/mods-enabled/scgi.load</p>
<p>Install XMLRPC:</p>
<p># mkdir /install;cd /install<br />
# svn checkout http://xmlrpc-c.svn.sourceforge.net/&#8230;mlrpc-c/stable xmlrpc-c<br />
# cd xmlrpc-c<br />
# ./configure &#8211;disable-cplusplus<br />
# make<br />
# make install</p>
<p>Intall libtorrent:</p>
<p># cd /install<br />
# wget http://libtorrent.rakshasa.no/downloads/libtorrent-0.13.2.tar.gz<br />
# tar xvf libtorrent-0.13.0.tar.gz<br />
# cd libtorrent-0.13.0<br />
# ./autogen.sh<br />
# ./configure<br />
# make<br />
# make install</p>
<p>Install rTorrent:</p>
<p># cd /install<br />
# wget http://libtorrent.rakshasa.no/downloads/rtorrent-0.9.2.tar.gz<br />
# cd rtorrent-0.9.0<br />
# ./autogen.sh<br />
# ./configure &#8211;with-xmlrpc-c<br />
# make<br />
# make install<br />
# ldconfig</p>
<p>Create required directories:</p>
<p># mkdir /home/seeder1/rtorrent<br />
# mkdir /home/seeder1/rtorrent/.session<br />
# mkdir /home/seeder1/rtorrent/watch<br />
# mkdir /home/seeder1/rtorrent/download</p>
<p>Setup .rtorrent.rc file (rTorrent config):</p>
<p># cd ~/<br />
# wget http://kimsufi.fawked.net/speedtest/.rtorrent.rc<br />
# cp .rtorrent.rc /home/seeder1/</p>
<p>(Edit the settings in .rtorrent.rc, like max upload/download speed, max connected peers, etc, as needed.)</p>
<p>Install ruTorrent:</p>
<p># cd /var/www<br />
# svn co http://rutorrent.googlecode.com/svn/trunk/rutorrent<br />
# cd /var/www/rutorrent/plugins<br />
# svn co http://rutorrent.googlecode.com/svn/trunk/plugins/rpc<br />
# chown -R www-data:www-data /var/www/rutorrent</p>
<p>(to upgrade or if any plugins break in the future, do the below)<br />
# cd /var/www/rutorrent<br />
# svn up<br />
# cd /var/www/rutorrent/plugins<br />
# svn up<br />
(/to upgrade or if any plugins break in the future, do the below)</p>
<p>Secure /rutorrent:</p>
<p># a2enmod ssl<br />
# a2enmod auth_digest<br />
# a2enmod scgi<br />
# openssl req $@ -new -x509 -days 365 -nodes -out /etc/apache2/apache.pem -keyout /etc/apache2/apache.pem<br />
# chmod 600 /etc/apache2/apache.pem<br />
# htdigest -c /etc/apache2/passwords seedbox seeder1</p>
<p>(Enter a password of your choice when prompted, you will use this to log in to the ruTorrent web UI.)</p>
<p># cd /etc/apache2/sites-available/<br />
# rm -rf default<br />
# wget http://kimsufi.fawked.net/speedtest/default<br />
# a2ensite default-ssl<br />
# /etc/init.d/apache2 reload</p>
<p>Install screen:</p>
<p># apt-get install screen</p>
<p>Start rTorrent in a detached shell using screen:</p>
<p># screen -fa -d -m rtorrent</p>
<p>(To start rtorrent automatically when the VPS is booted, add the above command to /etc/rc.local)</p>
<p>You can now access ruTorrent at http://xx.xx.xx.xx/rutorrent/ (replace xx.xx with your server&#8217;s IP address). You should be greeted with a login prompt, where the username is &#8220;seeder1&#8243; and the password is the one you set above in the &#8220;secure /rutorrent&#8221; section.</p>
]]></content:encoded>
			<wfw:commentRss>http://setuix.com/2012/05/17/how-to-set-up-rutorrent/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>server location</title>
		<link>http://setuix.com/2012/05/17/server-location/</link>
		<comments>http://setuix.com/2012/05/17/server-location/#comments</comments>
		<pubDate>Thu, 17 May 2012 00:15:54 +0000</pubDate>
		<dc:creator>zero</dc:creator>
				<category><![CDATA[Wiki]]></category>
		<category><![CDATA[datacenter]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[server]]></category>

		<guid isPermaLink="false">http://setuix.com/?p=186</guid>
		<description><![CDATA[Server Locations The only difference in the server&#8217;s location are the transfer speeds that you will receive when downloading your data from the server; there is not any difference in security. Your transfer speeds from the server are determined not just by the plan you have with your ISP, but also by your peering to the server. The locations that each plan is available in will be discussed below, as well as links to some test files that you can download to see which you receive a faster speed from (make sure to download the files one at a time, and not all at once). These test files are hosted by the datacenter at which the server would be located at, and while typically providing a very good idea of the speeds that you would receive when downloading your data from the server, the test files are on a different network than the servers themselves, and in very rare cases you may have different peering to them.]]></description>
			<content:encoded><![CDATA[<h3>Server Locations</h3>
<p>The only difference in the server&#8217;s location are the transfer speeds that you will receive when downloading your data from the server; <em>there is not any difference in security</em>.</p>
<p>Your transfer speeds from the server are determined not just by the plan you have with your ISP, but also by your peering to the server.</p>
<p>The locations that each plan is available in will be discussed below, as well as links to some test files that you can download to see which you receive a faster speed from (make sure to download the files one at a time, and not all at once).</p>
<p>These test files are hosted by the datacenter at which the server would be located at, and while typically providing a very good idea of the speeds that you would receive when downloading your data from the server, the test files are on a different network than the servers themselves, and in very rare cases you may have different peering to them.</p>
]]></content:encoded>
			<wfw:commentRss>http://setuix.com/2012/05/17/server-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hello world!</title>
		<link>http://setuix.com/2012/03/10/hello-world/</link>
		<comments>http://setuix.com/2012/03/10/hello-world/#comments</comments>
		<pubDate>Sat, 10 Mar 2012 06:58:47 +0000</pubDate>
		<dc:creator>zero</dc:creator>
				<category><![CDATA[Wiki]]></category>

		<guid isPermaLink="false">http://setuix.com/?p=1</guid>
		<description><![CDATA[Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!]]></description>
			<content:encoded><![CDATA[<p>Welcome to WordPress. This is your first post. Edit or delete it, then start blogging!</p>
]]></content:encoded>
			<wfw:commentRss>http://setuix.com/2012/03/10/hello-world/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

