<?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 split large file into several smaller files &#8211; Linux</title> <atom:link href="http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/feed/" rel="self" type="application/rss+xml" /><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/</link> <description>The place for computer tips and tricks! microsoft windows, open source, database, programming, freeware and etc</description> <lastBuildDate>Wed, 17 Mar 2010 21:18:27 +0000</lastBuildDate> <generator>http://wordpress.org/?v=2.9.2</generator> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <item><title>By: ToxAtec</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-155663</link> <dc:creator>ToxAtec</dc:creator> <pubDate>Fri, 26 Feb 2010 10:50:50 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-155663</guid> <description>I think froff meant the really single - .
From the split manpage:
&quot;With no INPUT, or when INPUT is -, read standard input.&quot;For example, it tells split to read from the pipe (created by the &#039;&#124;&#039;) instead of a specified file. Or it tells tar to write to standard output.By the way, this article / discussion is really helpful!</description> <content:encoded><![CDATA[<p>I think froff meant the really single &#8211; .<br
/> From the split manpage:<br
/> &#8220;With no INPUT, or when INPUT is -, read standard input.&#8221;</p><p>For example, it tells split to read from the pipe (created by the &#8216;|&#8217;) instead of a specified file. Or it tells tar to write to standard output.</p><p>By the way, this article / discussion is really helpful!</p> ]]></content:encoded> </item> <item><title>By: chua</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-152221</link> <dc:creator>chua</dc:creator> <pubDate>Fri, 29 Jan 2010 13:25:11 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-152221</guid> <description>the - is the way to include additional options.
it&#039;s very common in linux and unix</description> <content:encoded><![CDATA[<p>the &#8211; is the way to include additional options.<br
/> it&#8217;s very common in linux and unix</p> ]]></content:encoded> </item> <item><title>By: froff</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-151487</link> <dc:creator>froff</dc:creator> <pubDate>Mon, 25 Jan 2010 11:00:59 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-151487</guid> <description>hello
What does that &#039;-&#039; single character mean in command line?regards</description> <content:encoded><![CDATA[<p>hello<br
/> What does that &#8216;-&#8217; single character mean in command line?</p><p>regards</p> ]]></content:encoded> </item> <item><title>By: MadManII</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-144075</link> <dc:creator>MadManII</dc:creator> <pubDate>Sun, 27 Dec 2009 18:56:41 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-144075</guid> <description>Whoops, guess I should have proof read that.After the tar commands, and parameters (jcf, cf, cfz, etc.) and after the -, you&#039;ll of course need to tell it what file(s) to use and/or what directory and after the split command and parameters, just before the output filename, be sure to use the final - as well.Here&#039;s a better, yet simple example (remove quotes):
&quot;tar cvfp - filename.iso &#124;bzip2 -9 -c &#124;split -a 3 -db 500M - split_file.tbz.&quot;</description> <content:encoded><![CDATA[<p>Whoops, guess I should have proof read that.</p><p>After the tar commands, and parameters (jcf, cf, cfz, etc.) and after the -, you&#8217;ll of course need to tell it what file(s) to use and/or what directory and after the split command and parameters, just before the output filename, be sure to use the final &#8211; as well.</p><p>Here&#8217;s a better, yet simple example (remove quotes):<br
/> &#8220;tar cvfp &#8211; filename.iso |bzip2 -9 -c |split -a 3 -db 500M &#8211; split_file.tbz.&#8221;</p> ]]></content:encoded> </item> <item><title>By: MadMan</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-144067</link> <dc:creator>MadMan</dc:creator> <pubDate>Sun, 27 Dec 2009 18:36:23 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-144067</guid> <description>Attention to: Grahackgzip:
tar cfz - &#124;split -b 100M split_file.tgz. (note the last dot, optional though)gzip with level 9 compression:
tar cf - &#124;gzip -9 -c &#124;split -b 100M split_file.tgz.bzip2:
tar jcf &#124;split -b 100M split_file.tbz.bzip2 with level 9 compression:
tar cf - &#124;bzip2 -9 -c &#124;split -b 100M split_file.tbz.then simply cat split_file* &gt; file.tgz or .tbz and untar/gunzip or bunzip2 accordingly.In most Linux distro&#039;s, this should work as is. In OpenBSD or FreeBSD, I think the syntax may be a little different - the man pages will say though. As for other *nix OS&#039;s, YMMV. =)Hope this helps...</description> <content:encoded><![CDATA[<p>Attention to: Grahack</p><p>gzip:<br
/> tar cfz &#8211; |split -b 100M split_file.tgz. (note the last dot, optional though)</p><p>gzip with level 9 compression:<br
/> tar cf &#8211; |gzip -9 -c |split -b 100M split_file.tgz.</p><p>bzip2:<br
/> tar jcf |split -b 100M split_file.tbz.</p><p>bzip2 with level 9 compression:<br
/> tar cf &#8211; |bzip2 -9 -c |split -b 100M split_file.tbz.</p><p>then simply cat split_file* &gt; file.tgz or .tbz and untar/gunzip or bunzip2 accordingly.</p><p>In most Linux distro&#8217;s, this should work as is. In OpenBSD or FreeBSD, I think the syntax may be a little different &#8211; the man pages will say though. As for other *nix OS&#8217;s, YMMV. =)</p><p>Hope this helps&#8230;</p> ]]></content:encoded> </item> <item><title>By: Grahack</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-142600</link> <dc:creator>Grahack</dc:creator> <pubDate>Thu, 17 Dec 2009 22:15:12 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-142600</guid> <description>Found it:
http://www.linuxquestions.org/questions/linux-software-2/tar-split-question-605013/</description> <content:encoded><![CDATA[<p>Found it:<br
/> <a
href="http://www.linuxquestions.org/questions/linux-software-2/tar-split-question-605013/" rel="nofollow">http://www.linuxquestions.org/questions/linux-software-2/tar-split-question-605013/</a></p> ]]></content:encoded> </item> <item><title>By: Grahack</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-142598</link> <dc:creator>Grahack</dc:creator> <pubDate>Thu, 17 Dec 2009 22:11:30 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-142598</guid> <description>Hi all,
resurrecting this old interesting post to ask a question about tar.
I&#039;m creating an archive doing:tar cfz /media/disk/0912171726.tar.gz /dataIs there a way to use &#039;split&#039; and a pipe to create a few files WITHOUT creating the big file first?</description> <content:encoded><![CDATA[<p>Hi all,<br
/> resurrecting this old interesting post to ask a question about tar.<br
/> I&#8217;m creating an archive doing:</p><p>tar cfz /media/disk/0912171726.tar.gz /data</p><p>Is there a way to use &#8217;split&#8217; and a pipe to create a few files WITHOUT creating the big file first?</p> ]]></content:encoded> </item> <item><title>By: tijani</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-139637</link> <dc:creator>tijani</dc:creator> <pubDate>Thu, 03 Dec 2009 18:36:28 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-139637</guid> <description>for 3gp files they have a header that quicktime or other players look for to be able to play it. So you cannot use split to split it to 2 3gp files ever you change the extension. You have to use a special splitter for media files that copy also the header of the file.</description> <content:encoded><![CDATA[<p>for 3gp files they have a header that quicktime or other players look for to be able to play it. So you cannot use split to split it to 2 3gp files ever you change the extension. You have to use a special splitter for media files that copy also the header of the file.</p> ]]></content:encoded> </item> <item><title>By: chua</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-138097</link> <dc:creator>chua</dc:creator> <pubDate>Tue, 24 Nov 2009 07:46:32 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-138097</guid> <description>not really familiar with 3gp file.
but i think u can try Ulead media studio, or Adobe Premier.
Both are good for video editing.</description> <content:encoded><![CDATA[<p>not really familiar with 3gp file.<br
/> but i think u can try Ulead media studio, or Adobe Premier.<br
/> Both are good for video editing.</p> ]]></content:encoded> </item> <item><title>By: Jim Clayson</title><link>http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/comment-page-1/#comment-138090</link> <dc:creator>Jim Clayson</dc:creator> <pubDate>Tue, 24 Nov 2009 06:46:29 +0000</pubDate> <guid
isPermaLink="false">http://www.techiecorner.com/107/how-to-split-large-file-into-several-smaller-files-linux/#comment-138090</guid> <description>Okay, thanks for your reply.Do you have any suggestions for a suitable video editor?Jim</description> <content:encoded><![CDATA[<p>Okay, thanks for your reply.</p><p>Do you have any suggestions for a suitable video editor?</p><p>Jim</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk
Page Caching using disk (user agent is rejected)
Database Caching 3/22 queries in 0.021 seconds using disk

Served from: www.techiecorner.com @ 2010-03-18 15:15:22 -->