<?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: Zaloha.sh &#8211; A Simple Local Directory Synchronizer Script for Linux	</title>
	<atom:link href="https://www.tecmint.com/local-directory-synchronizer-for-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 16:34:14 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1323342</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 25 Mar 2020 08:25:59 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36373#comment-1323342</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322256&quot;&gt;Jens&lt;/a&gt;.

@Jens

 We truly appreciate the insights you have shared concerning Rsync in comparison to zaloha.sh. Many thanks once more.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322256">Jens</a>.</p>
<p>@Jens</p>
<p> We truly appreciate the insights you have shared concerning Rsync in comparison to zaloha.sh. Many thanks once more.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1323341</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 25 Mar 2020 08:23:03 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36373#comment-1323341</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322257&quot;&gt;Jens&lt;/a&gt;.

@Jens

Many thanks for the clear and precise explanation. We are truly grateful.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322257">Jens</a>.</p>
<p>@Jens</p>
<p>Many thanks for the clear and precise explanation. We are truly grateful.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jens		</title>
		<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322257</link>

		<dc:creator><![CDATA[Jens]]></dc:creator>
		<pubDate>Sat, 21 Mar 2020 19:49:15 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36373#comment-1322257</guid>

					<description><![CDATA[Aaron,

You seem to have had problems with getting &lt;strong&gt;REV.NEW&lt;/strong&gt; to work: The option &lt;code&gt;--revNew&lt;/code&gt; must be given and the file to be &lt;strong&gt;REV.NEW-ed&lt;/strong&gt; must be younger than the last run of &lt;strong&gt;Zaloha.sh&lt;/strong&gt; (= implies that it was created directly in the backup directory).

If the file is older, then it will be &lt;strong&gt;REMOVE-ed&lt;/strong&gt;, as this implies that it must have existed in the source directory before and somebody removed it from the source directory ...]]></description>
			<content:encoded><![CDATA[<p>Aaron,</p>
<p>You seem to have had problems with getting <strong>REV.NEW</strong> to work: The option <code>--revNew</code> must be given and the file to be <strong>REV.NEW-ed</strong> must be younger than the last run of <strong>Zaloha.sh</strong> (= implies that it was created directly in the backup directory).</p>
<p>If the file is older, then it will be <strong>REMOVE-ed</strong>, as this implies that it must have existed in the source directory before and somebody removed it from the source directory &#8230;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jens		</title>
		<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1322256</link>

		<dc:creator><![CDATA[Jens]]></dc:creator>
		<pubDate>Sat, 21 Mar 2020 19:28:52 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36373#comment-1322256</guid>

					<description><![CDATA[Add &lt;strong&gt;rsync&lt;/strong&gt; comparison: Clearly Rsync is a program with 20 years history, a de-facto standard, more feature-rich, network-capable and its delta-transfer algorithm has been a landmark in IT. However, this program has the following strong points (besides being very small):

1) It has the interactivity (execute only after user&#039;s confirmation) plus finer information about the actions. E.g. write of a new file is NEW and the update of an existing file is UPDATE. If you use the &lt;code&gt;--color&lt;/code&gt; option, NEW will display black/white (less risky operation) and UPDATE will display red (overwriting = more risky operation = more attention needed). I am not aware that rsync would give you that level of detail.

2) rsync is memory-constrained as it builds its file lists in memory. Problems have been reported with huge directory trees. This script builds and processes its file lists as CSV files (= not memory-constrained).

3) it has been reported that Rsync is slower than &lt;strong&gt;cp&lt;/strong&gt; when acting locally. This is caused by the fact that rsync has a checksum-computing function built-in that is active even when copying locally. This program invokes the operating system&#039;s cp command directly.

4) integrations with other systems, needed changes, etc: a shell script has certain advantages over a binary program]]></description>
			<content:encoded><![CDATA[<p>Add <strong>rsync</strong> comparison: Clearly Rsync is a program with 20 years history, a de-facto standard, more feature-rich, network-capable and its delta-transfer algorithm has been a landmark in IT. However, this program has the following strong points (besides being very small):</p>
<p>1) It has the interactivity (execute only after user&#8217;s confirmation) plus finer information about the actions. E.g. write of a new file is NEW and the update of an existing file is UPDATE. If you use the <code>--color</code> option, NEW will display black/white (less risky operation) and UPDATE will display red (overwriting = more risky operation = more attention needed). I am not aware that rsync would give you that level of detail.</p>
<p>2) rsync is memory-constrained as it builds its file lists in memory. Problems have been reported with huge directory trees. This script builds and processes its file lists as CSV files (= not memory-constrained).</p>
<p>3) it has been reported that Rsync is slower than <strong>cp</strong> when acting locally. This is caused by the fact that rsync has a checksum-computing function built-in that is active even when copying locally. This program invokes the operating system&#8217;s cp command directly.</p>
<p>4) integrations with other systems, needed changes, etc: a shell script has certain advantages over a binary program</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1320653</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Mon, 09 Mar 2020 08:32:13 +0000</pubDate>
		<guid isPermaLink="false">https://www.tecmint.com/?p=36373#comment-1320653</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1320471&quot;&gt;Aamir Khan&lt;/a&gt;.

@Aamir

You are correct, rsync is a more advanced tool with so many options. But you can employ zalohah.sh as a simple and easy-to-use backup tool.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/local-directory-synchronizer-for-linux/comment-page-1/#comment-1320471">Aamir Khan</a>.</p>
<p>@Aamir</p>
<p>You are correct, rsync is a more advanced tool with so many options. But you can employ zalohah.sh as a simple and easy-to-use backup tool.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
