<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Make Tech Easier &#187; split</title>
	<atom:link href="http://maketecheasier.com/tag/split/feed" rel="self" type="application/rss+xml" />
	<link>http://maketecheasier.com</link>
	<description>Uncomplicating the complicated, making life easier</description>
	<lastBuildDate>Fri, 20 Nov 2009 13:39:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=abc</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to Compress and Split Files in Ubuntu</title>
		<link>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06</link>
		<comments>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06#comments</comments>
		<pubDate>Mon, 06 Oct 2008 07:49:43 +0000</pubDate>
		<dc:creator>Damien</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[compress]]></category>
		<category><![CDATA[split]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://maketecheasier.com/?p=931</guid>
		<description><![CDATA[In Ubuntu, the Archive Manager (or file-roller) has make it easy for anyone to compress and zip up a file or folder, but if you have a large file, say 20Gb, and you want to back it up to the CD/DVD, you will find that no amount of compression can you reduce the file size [...]<p><strong><a href="http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06">How to Compress and Split Files in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>



Related posts:<ol><li><a href='http://maketecheasier.com/how-to-extract-daa-files-in-ubuntu/2008/06/19' rel='bookmark' title='Permanent Link: How To Extract DAA Files In Ubuntu?'>How To Extract DAA Files In Ubuntu?</a></li><li><a href='http://maketecheasier.com/how-to-install-dreamweaver-cs3-in-ubuntu-hardy/2008/06/20' rel='bookmark' title='Permanent Link: How To Install Dreamweaver CS3 In Ubuntu Hardy'>How To Install Dreamweaver CS3 In Ubuntu Hardy</a></li><li><a href='http://maketecheasier.com/mount-iso-bin-and-cue-files-from-nautilus/2009/05/23' rel='bookmark' title='Permanent Link: Ubuntu: How to Mount iso, Bin And Cue Files Directly From Nautilus'>Ubuntu: How to Mount iso, Bin And Cue Files Directly From Nautilus</a></li><li><a href='http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25' rel='bookmark' title='Permanent Link: Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs'>Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs</a></li><li><a href='http://maketecheasier.com/ubuntu-easy-and-quick-ways-to-open-any-files-as-root/2008/02/19' rel='bookmark' title='Permanent Link: Ubuntu: Easy (And Quick) Ways To Open Any Files As Root'>Ubuntu: Easy (And Quick) Ways To Open Any Files As Root</a></li></ol>]]></description>
			<content:encoded><![CDATA[<p>In Ubuntu, the Archive Manager (or file-roller) has make it easy for anyone to compress and zip up a file or folder, but if you have a large file, say 20Gb, and you want to back it up to the CD/DVD, you will find that no amount of compression can you reduce the file size to fit into 1 CD/DVD. In such case, it is a better solution to compress and split the large file into several smaller files and store them separately. This also applies if you want to share a large file on a file-sharing site. Splitting the compressed file into several smaller files will make it easier for others to download.</p>
<p>Let&#8217;s say that the large file is a movie file found in <em>/home/username/movie/large-file.avi</em> and you want to compress, split and store the smaller files at the folder <em>/home/username/movie/split-flies/</em>, this is what you type in the terminal:</p>
<p class="codeblock">cd movie/split-files (change the filepath to where you want to keep the split files)<br />
tar -cvj /home/username/movie/large-files.avi | split -b 650m -d &#8211; &#8220;large-files.tar.bz.&#8221;</p>
<p>You will now see several files appearing at the <em>split-files</em> folder, each with file size of 650MB and with filenames <em>large-files.tar.bz.00, large-files.tar.bz.01, large-files.tar.bz.02</em>, etc.</p>
<p>To recover and extract the split files, type</p>
<p class="codeblock">cat large-files.tar.bz.* &gt; large-files.tar.bz<br />
tar -xvj large-file.tar.bz</p>
<p>and you can get the original file back.</p>
<p>Do you know of any other ways to compress and split files in Ubuntu?</p>
<p><p><script type="text/javascript"><!--
google_ad_client = "pub-8765285789552883";
/* MTE body ad300x250, created 5/17/09 */
google_ad_slot = "3980792036";
google_ad_width = 300;
google_ad_height = 250;
//-->
</script>
<script type="text/javascript"
src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
</script>
</p></p>
<p><strong><a href="http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06">How to Compress and Split Files in Ubuntu</a></strong> originally published on <a href="http://maketecheasier.com">Make Tech Easier</a> (<a href="http://feedproxy.google.com/MakeTechEasier">RSS</a>)</p>


<p>Related posts:<ol><li><a href='http://maketecheasier.com/how-to-extract-daa-files-in-ubuntu/2008/06/19' rel='bookmark' title='Permanent Link: How To Extract DAA Files In Ubuntu?'>How To Extract DAA Files In Ubuntu?</a></li><li><a href='http://maketecheasier.com/how-to-install-dreamweaver-cs3-in-ubuntu-hardy/2008/06/20' rel='bookmark' title='Permanent Link: How To Install Dreamweaver CS3 In Ubuntu Hardy'>How To Install Dreamweaver CS3 In Ubuntu Hardy</a></li><li><a href='http://maketecheasier.com/mount-iso-bin-and-cue-files-from-nautilus/2009/05/23' rel='bookmark' title='Permanent Link: Ubuntu: How to Mount iso, Bin And Cue Files Directly From Nautilus'>Ubuntu: How to Mount iso, Bin And Cue Files Directly From Nautilus</a></li><li><a href='http://maketecheasier.com/create-a-private-encrypted-folder-on-ubuntu-hardy-with-ecryptfs/2008/09/25' rel='bookmark' title='Permanent Link: Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs'>Create a Private Encrypted Folder On Ubuntu Hardy With eCryptfs</a></li><li><a href='http://maketecheasier.com/ubuntu-easy-and-quick-ways-to-open-any-files-as-root/2008/02/19' rel='bookmark' title='Permanent Link: Ubuntu: Easy (And Quick) Ways To Open Any Files As Root'>Ubuntu: Easy (And Quick) Ways To Open Any Files As Root</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://maketecheasier.com/how-to-compress-and-split-files-in-ubuntu/2008/10/06/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
