<?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 &#8216;tar&#8217; Archive into Multiple Files of Certain Size	</title>
	<atom:link href="https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 03 Sep 2024 07:46:32 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Naren Rajasingam		</title>
		<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1552790</link>

		<dc:creator><![CDATA[Naren Rajasingam]]></dc:creator>
		<pubDate>Fri, 23 Jul 2021 01:27:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=21702#comment-1552790</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1403758&quot;&gt;Saikat&lt;/a&gt;.

You can split a potentially large tar file into multiple sub tar volumes using the &lt;code&gt;tar -M -l -F&lt;/code&gt; switches.
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;-M&lt;/code&gt; = multi-volume mode.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-l&lt;/code&gt; = volume size limit (per volume file).&lt;/li&gt;
&lt;li&gt;&lt;code&gt;-F&lt;/code&gt; = script to switch out the current tar name to the next on in your sequence (eg you might have started with xyz.tar and when you get to the specified volume size limit, tar will call your script (-F). your script should mv that xyz.tar to something like xyzzy-001.tar and then return.&lt;/li&gt;
&lt;/ul&gt;
tar will create a new file called xyz.tar and file it to the volume limit and call your script again which, this time, should increment the count and mv the file to xyz-002 etc. at the end you might want to have a symlink pointing the first tar vol xyz.tar --&#062; xyz-001.tar

hope this helps]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1403758">Saikat</a>.</p>
<p>You can split a potentially large tar file into multiple sub tar volumes using the <code>tar -M -l -F</code> switches.</p>
<ul>
<li><code>-M</code> = multi-volume mode.</li>
<li><code>-l</code> = volume size limit (per volume file).</li>
<li><code>-F</code> = script to switch out the current tar name to the next on in your sequence (eg you might have started with xyz.tar and when you get to the specified volume size limit, tar will call your script (-F). your script should mv that xyz.tar to something like xyzzy-001.tar and then return.</li>
</ul>
<p>tar will create a new file called xyz.tar and file it to the volume limit and call your script again which, this time, should increment the count and mv the file to xyz-002 etc. at the end you might want to have a symlink pointing the first tar vol xyz.tar &#8211;&gt; xyz-001.tar</p>
<p>hope this helps</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Saikat		</title>
		<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1403758</link>

		<dc:creator><![CDATA[Saikat]]></dc:creator>
		<pubDate>Wed, 23 Dec 2020 11:56:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=21702#comment-1403758</guid>

					<description><![CDATA[Hello, I have a situation. Here, I need to split up the large file in such a way that each of the &quot;part&quot; files generated are valid tar archives. For example:- If I do &quot;&lt;strong&gt;tar -xvf home.tar.bz2.parta&lt;/strong&gt;&quot; it should provide the valid output of the 10MB files captured by this part itself.]]></description>
			<content:encoded><![CDATA[<p>Hello, I have a situation. Here, I need to split up the large file in such a way that each of the &#8220;part&#8221; files generated are valid tar archives. For example:- If I do &#8220;<strong>tar -xvf home.tar.bz2.parta</strong>&#8221; it should provide the valid output of the 10MB files captured by this part itself.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andy M		</title>
		<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1331873</link>

		<dc:creator><![CDATA[Andy M]]></dc:creator>
		<pubDate>Tue, 05 May 2020 12:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=21702#comment-1331873</guid>

					<description><![CDATA[FYI if you&#039;re on Mac, it like lower case units for the size of the split (ie. &lt;strong&gt;m&lt;/strong&gt; instead of &lt;strong&gt;M&lt;/strong&gt; or &lt;strong&gt;gb&lt;/strong&gt; instead of &lt;strong&gt;GB&lt;/strong&gt;). Otherwise, you get a nice &quot;&lt;strong&gt;illegal byte count error&lt;/strong&gt;&quot;]]></description>
			<content:encoded><![CDATA[<p>FYI if you&#8217;re on Mac, it like lower case units for the size of the split (ie. <strong>m</strong> instead of <strong>M</strong> or <strong>gb</strong> instead of <strong>GB</strong>). Otherwise, you get a nice &#8220;<strong>illegal byte count error</strong>&#8220;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Harry Brown		</title>
		<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1260350</link>

		<dc:creator><![CDATA[Harry Brown]]></dc:creator>
		<pubDate>Thu, 03 Oct 2019 05:59:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=21702#comment-1260350</guid>

					<description><![CDATA[Hey, If any users want Split the large PST file then I suggested trying to use &lt;strong&gt;Outlook PST Splitter&lt;/strong&gt;. This Splitter breaks the large PST files into small PST files by date, size, year, and folder according to the user&#039;s needs. 

This Software Splits the files without installing MS-Outlook. This Splitter support all the Window Version and Outlook Version. This splitter has also a free version which helps users can easily see the demo before the conversion. 
]]></description>
			<content:encoded><![CDATA[<p>Hey, If any users want Split the large PST file then I suggested trying to use <strong>Outlook PST Splitter</strong>. This Splitter breaks the large PST files into small PST files by date, size, year, and folder according to the user&#8217;s needs. </p>
<p>This Software Splits the files without installing MS-Outlook. This Splitter support all the Window Version and Outlook Version. This splitter has also a free version which helps users can easily see the demo before the conversion. </p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Aaron Kili		</title>
		<link>https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1089483</link>

		<dc:creator><![CDATA[Aaron Kili]]></dc:creator>
		<pubDate>Wed, 02 Jan 2019 08:11:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=21702#comment-1089483</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1086965&quot;&gt;Reza&lt;/a&gt;.

@Reza

Thanks for the reporting this, we will cross check and correct the article as soon as possible. We truly appreciate your efforts.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/comment-page-1/#comment-1086965">Reza</a>.</p>
<p>@Reza</p>
<p>Thanks for the reporting this, we will cross check and correct the article as soon as possible. We truly appreciate your efforts.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
