<?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 Set Up and Use Restic for Linux Backups	</title>
	<atom:link href="https://www.tecmint.com/restic-backup-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/restic-backup-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Mon, 23 Dec 2024 06:25:37 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Kenny Noe		</title>
		<link>https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1534063</link>

		<dc:creator><![CDATA[Kenny Noe]]></dc:creator>
		<pubDate>Wed, 30 Jun 2021 20:44:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=3616#comment-1534063</guid>

					<description><![CDATA[Is there a link to the RHEL 7 repo? I tried to manually download the repo but got a key mismatch error and no yum install.  Thoughts??

TIA]]></description>
			<content:encoded><![CDATA[<p>Is there a link to the RHEL 7 repo? I tried to manually download the repo but got a key mismatch error and no yum install.  Thoughts??</p>
<p>TIA</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1127548</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 08 Apr 2019 05:57:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=3616#comment-1127548</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1126130&quot;&gt;dragonmouth&lt;/a&gt;.

@Dragonmouth,

I am extremely sorry bro, actually I forgotten completely, but thanks for reminding me again. Give me this week, I will update this article.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1126130">dragonmouth</a>.</p>
<p>@Dragonmouth,</p>
<p>I am extremely sorry bro, actually I forgotten completely, but thanks for reminding me again. Give me this week, I will update this article.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: dragonmouth		</title>
		<link>https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1126130</link>

		<dc:creator><![CDATA[dragonmouth]]></dc:creator>
		<pubDate>Fri, 05 Apr 2019 19:46:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=3616#comment-1126130</guid>

					<description><![CDATA[It is now April 2019 and the article still hasn&#039;t been updated as you promised couple of years ago.]]></description>
			<content:encoded><![CDATA[<p>It is now April 2019 and the article still hasn&#8217;t been updated as you promised couple of years ago.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Rodney Jackson		</title>
		<link>https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1067128</link>

		<dc:creator><![CDATA[Rodney Jackson]]></dc:creator>
		<pubDate>Mon, 26 Nov 2018 05:45:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=3616#comment-1067128</guid>

					<description><![CDATA[Hey fellows!, does this program do a reliable photo of the disc.?

I need a program that will restore Byte for Byte of a hard drive. I am rather new to Linux (Ubuntu 16.04.5) and every time I crash the system, I have to go through the trouble of reloading a program, then go through the &#039;wine&#039; process to get it going again. This plus having to set up mail and internet processes.

Thank you in advance]]></description>
			<content:encoded><![CDATA[<p>Hey fellows!, does this program do a reliable photo of the disc.?</p>
<p>I need a program that will restore Byte for Byte of a hard drive. I am rather new to Linux (Ubuntu 16.04.5) and every time I crash the system, I have to go through the trouble of reloading a program, then go through the &#8216;wine&#8217; process to get it going again. This plus having to set up mail and internet processes.</p>
<p>Thank you in advance</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bruno Cornec		</title>
		<link>https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1056738</link>

		<dc:creator><![CDATA[Bruno Cornec]]></dc:creator>
		<pubDate>Wed, 07 Nov 2018 15:15:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=3616#comment-1056738</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1054385&quot;&gt;RAj&lt;/a&gt;.

use &lt;strong&gt;man mondoarchive&lt;/strong&gt; to get an idea. And look at our doc page at http://mondorescue.org/docs.shtml

Example using bash:
&lt;code&gt;
export DIR=/my/backup/path
mkdir -p $DIR/images $DIR/tmp $DIR/scratch
/usr/sbin/mondoarchive -G -N -O -E &quot;/home&#124;/&#124;/pub&#124;/var/log&#124;/var/cache&#124;/mnt&quot; -i -d $DIR/images -s 4300m -T $DIR/tmp -S $DIR/scratch -p my-backup
&lt;/code&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/restic-backup-linux/comment-page-1/#comment-1054385">RAj</a>.</p>
<p>use <strong>man mondoarchive</strong> to get an idea. And look at our doc page at <a target="_blank" href="http://mondorescue.org/docs.shtml" rel="nofollow ugc">http://mondorescue.org/docs.shtml</a></p>
<p>Example using bash:<br />
<code><br />
export DIR=/my/backup/path<br />
mkdir -p $DIR/images $DIR/tmp $DIR/scratch<br />
/usr/sbin/mondoarchive -G -N -O -E "/home|/|/pub|/var/log|/var/cache|/mnt" -i -d $DIR/images -s 4300m -T $DIR/tmp -S $DIR/scratch -p my-backup<br />
</code></p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
