<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: How to Resume Partial File Transfers</title>
	<atom:link href="http://dimitar.me/how-to-resume-partial-file-transfers/feed/" rel="self" type="application/rss+xml" />
	<link>http://dimitar.me/how-to-resume-partial-file-transfers/</link>
	<description>Dimitar Darazhanski&#039;s blog.</description>
	<lastBuildDate>Sat, 12 May 2012 18:37:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: a</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-1431</link>
		<dc:creator>a</dc:creator>
		<pubDate>Thu, 12 Apr 2012 17:24:01 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-1431</guid>
		<description>either the scp example should reverse the source and dest or you should specify which machine you are logged into for each command. clearly in the scp example you are copying a local file to a remote machine, and in the rsync example you appear to be doing the reverse. one would assume you are logged into different machines in each case if one knows the syntax of the commands. but it might not be obvious.</description>
		<content:encoded><![CDATA[<p>either the scp example should reverse the source and dest or you should specify which machine you are logged into for each command. clearly in the scp example you are copying a local file to a remote machine, and in the rsync example you appear to be doing the reverse. one would assume you are logged into different machines in each case if one knows the syntax of the commands. but it might not be obvious.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonardo</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-1401</link>
		<dc:creator>Leonardo</dc:creator>
		<pubDate>Fri, 02 Mar 2012 00:24:11 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-1401</guid>
		<description>I thought of coming back here and sharing this info:

If you wish resume downloading of a whole folder with several files, instead of a single file, do this:

rsync -P -avz -e ssh user@host:remote_folder/ local_folder/

or if you&#039;re using a port different from 22:

rsync -P -avz -e &quot;ssh -p $portNumber&quot; user@host:remote_folder/ local_folder/

&#039;-a&#039; there is the crucial parameter to be added, &#039;-v&#039; and &#039;-z&#039; are optional. Check man rsync for further info.

Cheers.</description>
		<content:encoded><![CDATA[<p>I thought of coming back here and sharing this info:</p>
<p>If you wish resume downloading of a whole folder with several files, instead of a single file, do this:</p>
<p>rsync -P -avz -e ssh user@host:remote_folder/ local_folder/</p>
<p>or if you&#8217;re using a port different from 22:</p>
<p>rsync -P -avz -e &#8220;ssh -p $portNumber&#8221; user@host:remote_folder/ local_folder/</p>
<p>&#8216;-a&#8217; there is the crucial parameter to be added, &#8216;-v&#8217; and &#8216;-z&#8217; are optional. Check man rsync for further info.</p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Leonardo</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-1390</link>
		<dc:creator>Leonardo</dc:creator>
		<pubDate>Sun, 12 Feb 2012 16:01:25 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-1390</guid>
		<description>Great tip, thanks!
You could add that if the person is using a non-standard ssh port he should add it like this:

rsync -P -e &quot;ssh -p $portNumber&quot; user@host:remote_file local_file

Including the quotation marks.</description>
		<content:encoded><![CDATA[<p>Great tip, thanks!<br />
You could add that if the person is using a non-standard ssh port he should add it like this:</p>
<p>rsync -P -e &#8220;ssh -p $portNumber&#8221; user@host:remote_file local_file</p>
<p>Including the quotation marks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mobydobius</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-1389</link>
		<dc:creator>mobydobius</dc:creator>
		<pubDate>Sat, 11 Feb 2012 16:35:26 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-1389</guid>
		<description>yes but shouldnt the order be 
&#039;ssh source dest&#039; and &#039;rsync source dest&#039;. 
your ssh example is inconsistent with your rsync example</description>
		<content:encoded><![CDATA[<p>yes but shouldnt the order be<br />
&#8216;ssh source dest&#8217; and &#8216;rsync source dest&#8217;.<br />
your ssh example is inconsistent with your rsync example</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Augusto</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-1358</link>
		<dc:creator>Augusto</dc:creator>
		<pubDate>Thu, 22 Dec 2011 16:21:36 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-1358</guid>
		<description>Its not reversed, the example synchronizing from a remote computer to a local computer.</description>
		<content:encoded><![CDATA[<p>Its not reversed, the example synchronizing from a remote computer to a local computer.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lou Klepner</title>
		<link>http://dimitar.me/how-to-resume-partial-file-transfers/comment-page-1/#comment-872</link>
		<dc:creator>Lou Klepner</dc:creator>
		<pubDate>Thu, 18 Nov 2010 23:09:08 +0000</pubDate>
		<guid isPermaLink="false">http://dimitar.me/?p=793#comment-872</guid>
		<description>Great tip, though I think you&#039;ve reversed the source/destination of the rsync example.</description>
		<content:encoded><![CDATA[<p>Great tip, though I think you&#8217;ve reversed the source/destination of the rsync example.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

