<?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>Blog of Finster &#187; rsync</title>
	<atom:link href="http://finster.co.uk/tag/rsync/feed/" rel="self" type="application/rss+xml" />
	<link>http://finster.co.uk</link>
	<description>Technical Notes</description>
	<lastBuildDate>Sun, 14 Feb 2010 20:58:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>rsync on the QNAP TS-101</title>
		<link>http://finster.co.uk/2008/08/25/rsync-on-the-qnap-ts-101/</link>
		<comments>http://finster.co.uk/2008/08/25/rsync-on-the-qnap-ts-101/#comments</comments>
		<pubDate>Mon, 25 Aug 2008 08:03:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[qnap]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[rsync]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=18</guid>
		<description><![CDATA[rsync is a useful application which synchronizes files and folders between devices. The QNAP TS-101 supports this (with a bit of fiddling).
Setting up the QNAPOn the QNAP, go to the &#8220;Remote Replication&#8221; page, and turn on &#8220;Allow remote Rsync server to back up data to NAS&#8221;. (&#8220;Enable backup from a remote server to the local [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://en.wikipedia.org/wiki/Rsync">rsync</a> is a useful application which synchronizes files and folders between devices. The QNAP TS-101 supports this (with a bit of fiddling).</p>
<p><span style="font-size:130%;">Setting up the QNAP<br /></span><br />On the QNAP, go to the &#8220;Remote Replication&#8221; page, and turn on &#8220;Allow remote Rsync server to back up data to NAS&#8221;. (&#8220;Enable backup from a remote server to the local host.&#8221; should already be set, and the port should be the default of 873)</p>
<p><span style="font-size:130%;">Fixing rsyncd.conf</span></p>
<p>Unfortunately, there seems to be a problem with the rsync configuration file &#8211; the master user is set as &#8220;admin&#8221; which doesn&#8217;t exist (the root user on the QNAP is &#8220;administrator&#8221;).</p>
<p>To fix this, edit <span style="font-family:courier new;">/etc/rsyncd.conf</span> and change: -</p>
<p><span style="font-family:courier new;"> uid = admin</span></p>
<p>to</p>
<p><span style="font-family:courier new;"> uid = administrator</span></p>
<p><span style="font-size:130%;">Listing Remote Folders</span></p>
<p>To check that rsync is allowing connections, go to your client and enter: -</p>
<p><span style="font-family:courier new;">rsync 192.168.0.2::</span></p>
<p>You should get something similar to the following: -</p>
<p><span style="font-family:courier new;">Qmultimedia</span><br /><span style="font-family:courier new;">Qdownload</span><br /><span style="font-family:courier new;">Qweb</span><br /><span style="font-family:courier new;">Qusb</span><br /><span style="font-family:courier new;">Public</span></p>
<p><span style="font-size:130%;">Backing up a directory</span></p>
<p>To back up a directory, its a simple matter of issuing an rsync command. For example: -</p>
<p><span style="font-family:courier new;">rsync -vrltz &#8211;progress &#8211;password-file=<span style="color: rgb(51, 51, 153);">password.txt</span> &#8211;delete &#8211;exclude-from=<span style="color: rgb(51, 51, 153);">excludes.txt</span> &#8220;/cygdrive/<span style="color: rgb(51, 51, 153);">C/users/windows_user/Documents/</span>&#8221;  &#8220;<span style="color: rgb(51, 51, 153);">qnap_user</span>@<span style="color: rgb(51, 51, 153);">192.168.0.2</span>::<span style="color: rgb(51, 51, 153);">qnap_folder/</span>&#8220;</span></p>
<p>where: -</p>
<p>password.txt is a file containing your qnap password<br />excludes.txt is a file containing files not to synchronize<br />C/users/windows_user/Documents is the folder to copy<br />qnap_user is a QNAP user that has access to the remote folder<br />192.168.0.2 is the IP address of the QNAP device<br />qnap_folder is the destination</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/25/rsync-on-the-qnap-ts-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DeltaCopy &#8211; rsync for Windows</title>
		<link>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/</link>
		<comments>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/#comments</comments>
		<pubDate>Sun, 24 Aug 2008 00:02:00 +0000</pubDate>
		<dc:creator>finster</dc:creator>
				<category><![CDATA[software]]></category>
		<category><![CDATA[rsync]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://finster.co.uk/?p=15</guid>
		<description><![CDATA[DeltaCopy is a free piece of software for Windows that allows you to interface with other computers running rsync. Basically, it is a &#8220;Windows Friiendly&#8221; wrapper around rsync. It is fairly easy to use, and also allows you to run rsync from the command line without having to install CygWin.
]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.aboutmyip.com/AboutMyXApp/DeltaCopy.jsp">DeltaCopy</a> is a free piece of software for Windows that allows you to interface with other computers running <a href="http://samba.anu.edu.au/rsync/">rsync</a>. Basically, it is a &#8220;Windows Friiendly&#8221; wrapper around rsync. It is fairly easy to use, and also allows you to run rsync from the command line without having to install <a href="http://www.cygwin.com/">CygWin</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://finster.co.uk/2008/08/24/deltacopy-rsync-for-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
