<?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 Create a Multi Part Tar File with Linux</title>
	<atom:link href="http://www.simplehelp.net/2009/05/25/how-to-create-a-multi-part-tar-file-with-linux/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.simplehelp.net/2009/05/25/how-to-create-a-multi-part-tar-file-with-linux/</link>
	<description>Common questions, simple answers</description>
	<lastBuildDate>Mon, 23 Nov 2009 06:40:21 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Articles Collection of May’09 &#171; Dako-Tux</title>
		<link>http://www.simplehelp.net/2009/05/25/how-to-create-a-multi-part-tar-file-with-linux/comment-page-1/#comment-10761</link>
		<dc:creator>Articles Collection of May’09 &#171; Dako-Tux</dc:creator>
		<pubDate>Wed, 24 Jun 2009 14:14:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2785#comment-10761</guid>
		<description>[...] How to Create a Multi Part Tar File with Linux [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Create a Multi Part Tar File with Linux [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neil</title>
		<link>http://www.simplehelp.net/2009/05/25/how-to-create-a-multi-part-tar-file-with-linux/comment-page-1/#comment-10763</link>
		<dc:creator>Neil</dc:creator>
		<pubDate>Tue, 26 May 2009 21:19:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2785#comment-10763</guid>
		<description>Perhaps a better example would show the same operation used on multiple folders

# tar -cf - /var/www /var/ftp &#124; split -b 100m - my_backup.tar

To guard against missing or damaged pieces, install &quot;par2cmdline&quot;, and create parity files so that you can repair missing pieces.

To create parity files with a 15% redundency:
# par2 create -r15 my_backup.tara*
To verify:
# par2 verify my_backup.taraa.par2
To repair missing pieces:
# par2 repair my_backup.taraa.par2
To combine the pieces and extract:
# cat my_backup.tara? &#124; (tar x)</description>
		<content:encoded><![CDATA[<p>Perhaps a better example would show the same operation used on multiple folders</p>
<p># tar -cf &#8211; /var/www /var/ftp | split -b 100m &#8211; my_backup.tar</p>
<p>To guard against missing or damaged pieces, install &#8220;par2cmdline&#8221;, and create parity files so that you can repair missing pieces.</p>
<p>To create parity files with a 15% redundency:<br />
# par2 create -r15 my_backup.tara*<br />
To verify:<br />
# par2 verify my_backup.taraa.par2<br />
To repair missing pieces:<br />
# par2 repair my_backup.taraa.par2<br />
To combine the pieces and extract:<br />
# cat my_backup.tara? | (tar x)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don Birdsall</title>
		<link>http://www.simplehelp.net/2009/05/25/how-to-create-a-multi-part-tar-file-with-linux/comment-page-1/#comment-10762</link>
		<dc:creator>Don Birdsall</dc:creator>
		<pubDate>Tue, 26 May 2009 13:50:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.simplehelp.net/?p=2785#comment-10762</guid>
		<description>Perhaps I am missing something. For a single large file why not simply use the split command by itself? Executing a single command might be faster than executing both tar and split.

split --bytes=1024b sdbackup.db db_backup_
cat db_backup_* &gt; joined_file.db</description>
		<content:encoded><![CDATA[<p>Perhaps I am missing something. For a single large file why not simply use the split command by itself? Executing a single command might be faster than executing both tar and split.</p>
<p>split &#8211;bytes=1024b sdbackup.db db_backup_<br />
cat db_backup_* &gt; joined_file.db</p>
]]></content:encoded>
	</item>
</channel>
</rss>
