<?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 Compress and Split Files in Ubuntu</title>
	<atom:link href="http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Sat, 21 Nov 2009 01:01:31 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Joel</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-7966</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Wed, 03 Jun 2009 03:17:21 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-7966</guid>
		<description>Oops, I just noticed that in my comment it&#039;s doing the same thing as what this tutorial says.  I should pay better attention to the whole command next time.  Thanks for this guide :D</description>
		<content:encoded><![CDATA[<p>Oops, I just noticed that in my comment it&#8217;s doing the same thing as what this tutorial says.  I should pay better attention to the whole command next time.  Thanks for this guide :D</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-7938</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Mon, 01 Jun 2009 08:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-7938</guid>
		<description>From looking around this also will work:

split -d --bytes=104857600 file.rar

and

cat &lt; file.rar.*</description>
		<content:encoded><![CDATA[<p>From looking around this also will work:</p>
<p>split -d &#8211;bytes=104857600 file.rar</p>
<p>and</p>
<p>cat &lt; file.rar.*</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mel The Geek and More&#8230; &#187; 8 Ways to Maintain a Clean, Lean Ubuntu Machine</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-2682</link>
		<dc:creator>Mel The Geek and More&#8230; &#187; 8 Ways to Maintain a Clean, Lean Ubuntu Machine</dc:creator>
		<pubDate>Fri, 17 Oct 2008 18:39:37 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-2682</guid>
		<description>[...] either backup to a CD/DVD or to an external hard disk. If the file is too big, you may want to compress and split it to several small files for easier [...]</description>
		<content:encoded><![CDATA[<p>[...] either backup to a CD/DVD or to an external hard disk. If the file is too big, you may want to compress and split it to several small files for easier [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Damien</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-2647</link>
		<dc:creator>Damien</dc:creator>
		<pubDate>Mon, 13 Oct 2008 15:12:37 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-2647</guid>
		<description>@qiet72: Yes. You are correct. Thanks for spotting and pointing out the error.</description>
		<content:encoded><![CDATA[<p>@qiet72: Yes. You are correct. Thanks for spotting and pointing out the error.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qiet72</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-2645</link>
		<dc:creator>qiet72</dc:creator>
		<pubDate>Mon, 13 Oct 2008 09:46:41 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-2645</guid>
		<description>You wrote &quot;tar -xvf large-file.tar.bz&quot;
It should read &quot;tar -xvjf large-file.tar.bz&quot; because the tar file was compress with bzip2 and needs to be uncompressed with the same program.

Another more optimal way would be:
&quot;cat large-file.tar.gz.* &#124; tar -xvj&quot;</description>
		<content:encoded><![CDATA[<p>You wrote &#8220;tar -xvf large-file.tar.bz&#8221;<br />
It should read &#8220;tar -xvjf large-file.tar.bz&#8221; because the tar file was compress with bzip2 and needs to be uncompressed with the same program.</p>
<p>Another more optimal way would be:<br />
&#8220;cat large-file.tar.gz.* | tar -xvj&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: How to Split Files in Ubuntu &#171; TTC Shelbyville - Technical Blog</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-2625</link>
		<dc:creator>How to Split Files in Ubuntu &#171; TTC Shelbyville - Technical Blog</dc:creator>
		<pubDate>Sat, 11 Oct 2008 03:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-2625</guid>
		<description>[...] Computers, Linux, Ubuntu      Excellent article on splitting files and compression in Ubuntu.  More   (Thanks to [...]</description>
		<content:encoded><![CDATA[<p>[...] Computers, Linux, Ubuntu      Excellent article on splitting files and compression in Ubuntu.  More   (Thanks to [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 8 Ways to Maintain a Clean, Lean Ubuntu Machine - Make Tech Easier</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/comment-page-1#comment-2546</link>
		<dc:creator>8 Ways to Maintain a Clean, Lean Ubuntu Machine - Make Tech Easier</dc:creator>
		<pubDate>Tue, 07 Oct 2008 04:31:46 +0000</pubDate>
		<guid isPermaLink="false">http://maketecheasier.com/?p=931#comment-2546</guid>
		<description>[...] How to Compress and Split Files in Ubuntu  [...]</description>
		<content:encoded><![CDATA[<p>[...] How to Compress and Split Files in Ubuntu  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
