<?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>torrent Archives - Installing.in</title>
	<atom:link href="https://www.installing.in/tag/torrent/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.installing.in/tag/torrent/</link>
	<description></description>
	<lastBuildDate>Fri, 27 Sep 2019 11:06:38 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>
<site xmlns="com-wordpress:feed-additions:1">110734269</site>	<item>
		<title>Installing Torrent Client on VPS : Transmission</title>
		<link>https://www.installing.in/installing-torrent-client-on-vps-transmission/</link>
					<comments>https://www.installing.in/installing-torrent-client-on-vps-transmission/#respond</comments>
		
		<dc:creator><![CDATA[Rajeev]]></dc:creator>
		<pubDate>Tue, 15 Aug 2017 13:21:41 +0000</pubDate>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>
		<category><![CDATA[torrent]]></category>
		<category><![CDATA[ubuntu]]></category>
		<guid isPermaLink="false">https://www.installing.in/?p=107</guid>

					<description><![CDATA[<p>There are many torrent clients available that can be installed on a VPS and you can download files directly to your VPS and later transfer them to your local machine.... </p>
<p>The post <a href="https://www.installing.in/installing-torrent-client-on-vps-transmission/">Installing Torrent Client on VPS : Transmission</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>There are many torrent clients available that can be installed on a VPS and you can download files directly to your VPS and later transfer them to your local machine. In this tutorial, I will show you how to install the&nbsp;<a href="https://transmissionbt.com/" target="_blank" rel="noopener noreferrer">Transmission torrent client</a>.</p>
<p><a href="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission.png?ssl=1"><img data-recalc-dims="1" fetchpriority="high" decoding="async" class="aligncenter size-full wp-image-285" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission.png?resize=720%2C300&#038;ssl=1" alt="transmission" width="720" height="300"></a></p>
<p>Transmission is a free and open-source torrent client with an easy graphic interface so you can add/remove the torrent from any web browser.</p>
<p>Why you may want to install a torrent client on a VPS rather than using a torrent client on your local machine:</p>
<ol>
<li>In most cases the bandwidth or the data available in your plan is limited. While downloading a torrent you use that data in both ways i.e. you upload content in addition to downloading. You end up using more data than what you have downloaded. VPSs come with a decent amount of bandwidth so it shouldn&#8217;t be a problem.</li>
<li>The speed of download also depends on the speed of upload. In most cases, a VPS has a &nbsp;better download and upload speed than your local connection. So you get the file on your VPS quickly that can later be transferred to your machine with a download manager. Also, you will get more speed downloading from your VPS.</li>
<li>You don&#8217;t have to keep your computer running for a long time if the download speed from the torrent is slow. With this setup, you start the download on your VPS and turn off your computer. The download will finish in the background. Later you can download at better speed to your local machine.</li>
</ol>
<blockquote><p>In this tutorial I am going to install transmission torrent client on ubuntu 16.04 VPS hosted on digitalocean (<a href="https://goo.gl/Of63YW" target="_blank" rel="noopener noreferrer">use this link to signup</a> and you will get $10 to test with).</p></blockquote>
<h2>Steps to Install:</h2>
<h3>1. Add transmission repository:</h3>
<p>Although transmission is available in ubuntu repository but adding transmission repository make it sure that you always have the latest and most secure transmission installed.</p>
<pre>sudo add-apt-repository ppa:transmissionbt/ppa</pre>
<p>Now update repositories by issuing this command</p>
<pre>sudo apt-get update</pre>
<h3>2. Install transmission:</h3>
<pre>sudo apt-get install transmission-cli transmission-common transmission-daemon</pre>
<p>This will install the transmission on your VPS and you can use it right away but a few other changes are must to make it more secure and function well.</p>
<h3>3. Securing transmission:</h3>
<p>There are few things to do to secure the transmission installation.</p>
<p>First, stop the transmission-daemon by issuing this command</p>
<pre>sudo service transmission-daemon stop</pre>
<p><strong>3a. Change default username and password:</strong></p>
<p>For now, the transmission is secured by default username and password and we need to change it. To do this we have to make some changes in&nbsp;/var/lib/transmission-daemon/info/settings.json file. Edit the settings.json file by using this command</p>
<pre>sudo nano /var/lib/transmission-daemon/info/settings.json</pre>
<p>This will open the file in nano.</p>
<p>Use arrow keys to locate these lines</p>
<pre>"rpc-password": "{62b16db87b89a91dd49a5110a7cafc06d20eb4f2wtK6kqPj",
<span id="line-2" class="anchor"></span>"rpc-username": "transmission",</pre>
<p>and <span style="color: #ff0000;">change the values for username and password</span> to your liking.</p>
<p>Don&#8217;t exit nano yet.</p>
<p><strong>3b. Whitelist your IP address:</strong></p>
<p>By default, you can access the transmission user interface via localhost only but we want to access it from your home computer as well so either you need to add your IP address to the whitelist or you can turn whitelist completely off. If your IP address keeps on changing then you will want to turn it off.</p>
<p>To <strong>add your IP address</strong> you simply need to add <a href="https://www.google.co.in/search?q=my+ip" target="_blank" rel="noopener noreferrer">your IP address</a> to this line separated with a comma(,). I have highlighted the part to be changed in red.</p>
<pre>"rpc-whitelist": "127.0.0.1<span style="color: #ff0000;">,192.168.52.45</span>",</pre>
<p>Or if you want to <strong>disable the whitelist</strong> completely locate this line with arrow keys</p>
<pre class="p1"><span class="s1">"rpc-whitelist-enabled":<span style="color: #ff0000;">true</span>,</span></pre>
<p><span style="color: #ff0000;">change the true to false</span>. This will disable the whitelist.</p>
<p><strong>3c. Fixing permission issues:</strong></p>
<p>Also, change the unmask parameter to make sure the permission to all folders is right.</p>
<p>Locate this line</p>
<pre>"umask": 18,</pre>
<p>and change the value 18 to 2</p>
<pre>"umask": 2,</pre>
<p>Your configuration file will look like this now. I have marked the lines with an arrow where you have changed. See I have disabled white list as I have a dynamic IP address.</p>
<p><a href="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission-conf.png?ssl=1"><img data-recalc-dims="1" decoding="async" class="aligncenter wp-image-365" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission-conf.png?resize=733%2C410&#038;ssl=1" alt="transmission_conf" width="733" height="410" srcset="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission-conf.png?w=1020&amp;ssl=1 1020w, https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/transmission-conf.png?resize=680%2C380&amp;ssl=1 680w" sizes="(max-width: 733px) 100vw, 733px" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<h3>4. Save configuration file:</h3>
<p>To save the changes <span style="color: #ff0000;">press shift+X keys&nbsp;</span></p>
<p>and then <span style="color: #ff0000;">type Y</span> and <span style="color: #ff0000;">press enter</span>.</p>
<p><strong>5. Restart transmission:</strong></p>
<p>Now start the transmission-daemon again</p>
<pre>sudo service transmission-daemon start</pre>
<p><strong>Your transmission torrent client is ready to use now.</strong></p>
<h3>Accessing web interface</h3>
<p>To access transmission web interface just make sure port 9091 is not blocked and enter visit this web address:</p>
<p>http://<span style="color: #ff0000;">server-ip</span>:9091</p>
<p>change the red part with your VPS&#8217;s IP address.</p>
<p>You will see a screen like this.</p>
<p><img data-recalc-dims="1" decoding="async" class="aligncenter wp-image-228 size-full" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/Window.png?resize=395%2C245&#038;ssl=1" alt="transmission login window" width="395" height="245"></p>
<p>Use the username and password you set in step 3a to login.</p>
<p>You will now see a screen like this</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="aligncenter wp-image-227 size-full" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/Transmission_Web_Interface.png?resize=744%2C613&#038;ssl=1" alt="Transmission_Web_Interface" width="744" height="613"></p>
<p>To add a torrent you will need to upload a torrent file or enter a magnet URL of the torrent to start the download. For example, I am using a torrent file for ubuntu-desktop addition.</p>
<p>Click on the file with the green arrow box (labeled&nbsp;<span style="color: #ff0000;">1</span>) at the top left corner and that will open this box</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="aligncenter wp-image-226 size-full" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/Transmission_Web_Interface_2.png?resize=744%2C613&#038;ssl=1" alt="Transmission_Web_Interface_upload" width="744" height="613"></p>
<p>if you have a torrent file select it by clicking on the button saying &#8220;Choose Files&#8221; (labeled&nbsp;<span style="color: #ff0000;">2</span>)</p>
<p>or if you have a magnet link you can enter it the box labeled&nbsp;<span style="color: #ff0000;">3.</span></p>
<p>Your files will be downloaded in the folder labeled as <span style="color: #ff0000;">5</span>.</p>
<p>Now click the upload button(labeled&nbsp;<span style="color: #ff0000;">4</span>) and your torrent download will start.</p>
<p><img data-recalc-dims="1" loading="lazy" decoding="async" class="alignnone wp-image-225 size-full" src="https://i0.wp.com/www.installing.in/wp-content/uploads/2017/08/Transmission_Web_Interface-3.png?resize=760%2C551&#038;ssl=1" alt="Transmission_Web_Interface downloading" width="760" height="551"></p>
<p>You will not see the right side window initially but if you double click on the torrent it will appear.</p>
<p>You can download the files using any FTP client to your local machine. I use <a href="https://cyberduck.io/?l=en" target="_blank" rel="noopener noreferrer">Cyberduck</a> on mac and <a href="https://winscp.net/eng/download.php" target="_blank" rel="noopener noreferrer">WinSCP</a> on windows. Both are free.</p>
<p><strong>That&#8217;s it.</strong></p>
<p>If you have any questions or suggestion <strong>please comment.</strong></p>
<p>The post <a href="https://www.installing.in/installing-torrent-client-on-vps-transmission/">Installing Torrent Client on VPS : Transmission</a> appeared first on <a href="https://www.installing.in">Installing.in</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://www.installing.in/installing-torrent-client-on-vps-transmission/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">107</post-id>	</item>
	</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.boldgrid.com/w3-total-cache/?utm_source=w3tc&utm_medium=footer_comment&utm_campaign=free_plugin

Object Caching 11/89 objects using Redis
Page Caching using Disk: Enhanced 
Lazy Loading (feed)
Minified using Disk
Database Caching 2/46 queries in 0.011 seconds using Redis

Served from: installing.in @ 2026-05-21 04:55:39 by W3 Total Cache
-->