<?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: Rsnapshot Server on Windows</title>
	<atom:link href="http://blog.gingerlime.com/rsnapshot-server-on-windows/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.gingerlime.com/rsnapshot-server-on-windows</link>
	<description></description>
	<lastBuildDate>Fri, 30 Oct 2009 10:55:07 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Sauvegarder un PC Windows avec rSnapshot, configuration complète &#124; Void And Any</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-1865</link>
		<dc:creator>Sauvegarder un PC Windows avec rSnapshot, configuration complète &#124; Void And Any</dc:creator>
		<pubDate>Fri, 30 Oct 2009 10:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-1865</guid>
		<description>[...] http://blog.gingerlime.com/rsnapshot-server-on-windows [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://blog.gingerlime.com/rsnapshot-server-on-windows" rel="nofollow">http://blog.gingerlime.com/rsnapshot-server-on-windows</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Yoav Aner</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-1451</link>
		<dc:creator>Yoav Aner</dc:creator>
		<pubDate>Fri, 14 Aug 2009 10:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-1451</guid>
		<description>Thanks &#039;pseudo-anonymous coward&#039;! I made a note on top of the post.</description>
		<content:encoded><![CDATA[<p>Thanks &#8216;pseudo-anonymous coward&#8217;! I made a note on top of the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pseudo-Anonymous Coward</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-1450</link>
		<dc:creator>Pseudo-Anonymous Coward</dc:creator>
		<pubDate>Fri, 14 Aug 2009 04:30:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-1450</guid>
		<description>Rsnapshot is actually packaged in cygwin now (Hurray!).

I would caution anyone against using anything older than the 1.7 release because of the path length restriction. The older version of cygwin doesn&#039;t fail nicely when that limit is reached and it will kill your backups.  All someone has to do to break your backups is make a folder tree that&#039;s too deep.</description>
		<content:encoded><![CDATA[<p>Rsnapshot is actually packaged in cygwin now (Hurray!).</p>
<p>I would caution anyone against using anything older than the 1.7 release because of the path length restriction. The older version of cygwin doesn&#8217;t fail nicely when that limit is reached and it will kill your backups.  All someone has to do to break your backups is make a folder tree that&#8217;s too deep.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-94</link>
		<dc:creator>Christoph</dc:creator>
		<pubDate>Sun, 30 Dec 2007 09:43:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-94</guid>
		<description>There&#039;s an inherent limit to the length of path and filenames in the current cygwin implementation to 260 bytes (for compatibility with older versions of windws). I believe that Corinna Vinschen is working on this issue for the 1.7.0 release:

http://www.nabble.com/File-name-too-long-problem-td14109419.html</description>
		<content:encoded><![CDATA[<p>There&#8217;s an inherent limit to the length of path and filenames in the current cygwin implementation to 260 bytes (for compatibility with older versions of windws). I believe that Corinna Vinschen is working on this issue for the 1.7.0 release:</p>
<p><a href="http://www.nabble.com/File-name-too-long-problem-td14109419.html" rel="nofollow">http://www.nabble.com/File-name-too-long-problem-td14109419.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a-caveman</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-13</link>
		<dc:creator>a-caveman</dc:creator>
		<pubDate>Thu, 02 Aug 2007 00:53:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-13</guid>
		<description>I tried this this afternoon and it worked fine, except for rsnapshot complaining about file names, but that seems to be a windows thing.

One thing, for those not necessarily familiar with .bat files, you need to edit:
    /Cygwin.bat
using your favorite text editor and tack the mentioned line at the bottom:
bash --login -i /path/to/shell/script

Also, for your bash script that the .bat file references, I had to have a proper shell script for it to work:
    #!/bin/bash
    /usr/local/bin/rsnapshot hourly 
    exit

But otherwise, your instructions worked quite well.</description>
		<content:encoded><![CDATA[<p>I tried this this afternoon and it worked fine, except for rsnapshot complaining about file names, but that seems to be a windows thing.</p>
<p>One thing, for those not necessarily familiar with .bat files, you need to edit:<br />
    /Cygwin.bat<br />
using your favorite text editor and tack the mentioned line at the bottom:<br />
bash &#8211;login -i /path/to/shell/script</p>
<p>Also, for your bash script that the .bat file references, I had to have a proper shell script for it to work:<br />
    #!/bin/bash<br />
    /usr/local/bin/rsnapshot hourly<br />
    exit</p>
<p>But otherwise, your instructions worked quite well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yoav</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-12</link>
		<dc:creator>yoav</dc:creator>
		<pubDate>Wed, 01 Aug 2007 08:03:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-12</guid>
		<description>Thanks. Please note things aren&#039;t always perfect though. I did keep encountering problems with certain files. I think it was to do with folder nesting levels. At some points, and with particularly long filenames it didn&#039;t seem to work as smoothly as expected. YMMV. Would like to hear other people&#039;s experience / suggestions</description>
		<content:encoded><![CDATA[<p>Thanks. Please note things aren&#8217;t always perfect though. I did keep encountering problems with certain files. I think it was to do with folder nesting levels. At some points, and with particularly long filenames it didn&#8217;t seem to work as smoothly as expected. YMMV. Would like to hear other people&#8217;s experience / suggestions</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a-caveman</title>
		<link>http://blog.gingerlime.com/rsnapshot-server-on-windows/comment-page-1#comment-11</link>
		<dc:creator>a-caveman</dc:creator>
		<pubDate>Wed, 01 Aug 2007 01:37:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.gingerlime.com/rsnapshot-server-on-windows#comment-11</guid>
		<description>Finally!  Someone put up instructions on how to do this!

Thank you!

rsnapshot works great for backing up to a linux box and using almost no resources, but all the software for pulling backups to a windows box hogs every last bit of bandwidth.  I&#039;ll be trying to implement this in the morning! Hopefully I&#039;ll be replacing our bandwidth and resource hogging piece of junk backup programs with rsnapshot in the very near future...

Thanks again!</description>
		<content:encoded><![CDATA[<p>Finally!  Someone put up instructions on how to do this!</p>
<p>Thank you!</p>
<p>rsnapshot works great for backing up to a linux box and using almost no resources, but all the software for pulling backups to a windows box hogs every last bit of bandwidth.  I&#8217;ll be trying to implement this in the morning! Hopefully I&#8217;ll be replacing our bandwidth and resource hogging piece of junk backup programs with rsnapshot in the very near future&#8230;</p>
<p>Thanks again!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
