<?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: Create a tar file of an entire directory and its sub-directories</title>
	<atom:link href="http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/</link>
	<description>It&#039;s Just Links</description>
	<lastBuildDate>Thu, 22 Jul 2010 05:14:20 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Kuki Szabolcs</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/comment-page-1/#comment-155264</link>
		<dc:creator>Kuki Szabolcs</dc:creator>
		<pubDate>Tue, 17 Mar 2009 13:46:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comment-155264</guid>
		<description>using 

tar -cvfz mytarfile.tgz mydir/

returns
tar: mytarfile.tgz: Cannot stat: No such file or directory
tar: Error exit delayed from previous errors

so use it without dash in the beginning of the command as in:

tar cvfz mytarfile.tgz mydir/

and it works beautifully.</description>
		<content:encoded><![CDATA[<p>using </p>
<p>tar -cvfz mytarfile.tgz mydir/</p>
<p>returns<br />
tar: mytarfile.tgz: Cannot stat: No such file or directory<br />
tar: Error exit delayed from previous errors</p>
<p>so use it without dash in the beginning of the command as in:</p>
<p>tar cvfz mytarfile.tgz mydir/</p>
<p>and it works beautifully.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rick</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/comment-page-1/#comment-136654</link>
		<dc:creator>rick</dc:creator>
		<pubDate>Mon, 22 Dec 2008 18:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comment-136654</guid>
		<description>I thank you so muhc for putting this code up. I can never remember it and always load this page when I need to make a backup.

Do you have any good ways to just get one file out of the tar file?</description>
		<content:encoded><![CDATA[<p>I thank you so muhc for putting this code up. I can never remember it and always load this page when I need to make a backup.</p>
<p>Do you have any good ways to just get one file out of the tar file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: George</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/comment-page-1/#comment-82139</link>
		<dc:creator>George</dc:creator>
		<pubDate>Mon, 19 May 2008 15:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comment-82139</guid>
		<description>The problem with the zip format is that it does not store file permissions.</description>
		<content:encoded><![CDATA[<p>The problem with the zip format is that it does not store file permissions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Corsale</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/comment-page-1/#comment-25782</link>
		<dc:creator>Richard Corsale</dc:creator>
		<pubDate>Wed, 08 Aug 2007 19:07:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comment-25782</guid>
		<description>Also ... for a more universally compatible file try 
# zip -rv9 myzipfile.zip /mydir 

-9 is for maximum compression
-v is for verbose output
-r is recursive directories</description>
		<content:encoded><![CDATA[<p>Also &#8230; for a more universally compatible file try<br />
# zip -rv9 myzipfile.zip /mydir </p>
<p>-9 is for maximum compression<br />
-v is for verbose output<br />
-r is recursive directories</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/comment-page-1/#comment-23754</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 15 Jul 2007 17:32:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.tonyspencer.com/2005/11/02/create-a-tar-file-of-an-entire-directory-and-its-sub-directories/#comment-23754</guid>
		<description>tar -cvfz mytarfile.tgz mydir/ will also compress the directory (gzip)</description>
		<content:encoded><![CDATA[<p>tar -cvfz mytarfile.tgz mydir/ will also compress the directory (gzip)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
