<?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: 5 Best Command Line Archive Tools for Linux &#8211; Part 1	</title>
	<atom:link href="https://www.tecmint.com/command-line-archive-tools-for-linux/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/command-line-archive-tools-for-linux/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Tue, 25 Mar 2025 06:30:26 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-2289332</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Tue, 25 Mar 2025 06:30:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6650#comment-2289332</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-2277489&quot;&gt;dragonmouth&lt;/a&gt;.

@Dragonmouth,

Thanks for your interest! 

Yes, we’ve published Part 2, where we cover 5 more advanced archive tools for Linux, including &lt;code&gt;bzip2&lt;/code&gt;, &lt;code&gt;xz&lt;/code&gt;, &lt;code&gt;zip&lt;/code&gt;, &lt;code&gt;7zip&lt;/code&gt;, and more. 

You can check it out here: https://www.tecmint.com/linux-archive-tools/. 

Let me know if you find it helpful or have any questions!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-2277489">dragonmouth</a>.</p>
<p>@Dragonmouth,</p>
<p>Thanks for your interest! </p>
<p>Yes, we’ve published Part 2, where we cover 5 more advanced archive tools for Linux, including <code>bzip2</code>, <code>xz</code>, <code>zip</code>, <code>7zip</code>, and more. </p>
<p>You can check it out here: <a target="_blank" href="https://www.tecmint.com/linux-archive-tools/" rel="ugc">https://www.tecmint.com/linux-archive-tools/</a>. </p>
<p>Let me know if you find it helpful or have any questions!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: dragonmouth		</title>
		<link>https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-2277489</link>

		<dc:creator><![CDATA[dragonmouth]]></dc:creator>
		<pubDate>Fri, 28 Feb 2025 11:32:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6650#comment-2277489</guid>

					<description><![CDATA[Was there ever a &quot;Part 2&quot; to this article?]]></description>
			<content:encoded><![CDATA[<p>Was there ever a &#8220;Part 2&#8221; to this article?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: jesusguevarautomotriz		</title>
		<link>https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-753958</link>

		<dc:creator><![CDATA[jesusguevarautomotriz]]></dc:creator>
		<pubDate>Sun, 21 Feb 2016 17:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6650#comment-753958</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-750730&quot;&gt;Jesusguevarautomotriz&lt;/a&gt;.

Researching the multi volume tar, but I do not work for me
http://www.gnu.org/software/tar/manual/html_node/Multi_002dVolume-Archives.html

$ vim new-volume.sh 

#! /bin/bash
# For this script it&#039;s advisable to use a shell, such as Bash,
# that supports a TAR_FD value greater than 9.

echo Preparing volume $TAR_VOLUME of $TAR_ARCHIVE.

name=`expr $TAR_ARCHIVE : &#039;\(.*\)-.*&#039;`
case $TAR_SUBCOMMAND in
-c)       ;;
-d&#124;-x&#124;-t) test -r ${name:-$TAR_ARCHIVE}-$TAR_VOLUME &#124;&#124; exit 1
          ;;
*)        exit 1
esac

echo ${name:-$TAR_ARCHIVE}-$TAR_VOLUME &#062;&#038;$TAR_FD

$ chmod 755 new-volume.sh


$ tar -c -L650M -f cd-disk.tar -F new-volume Videos
tar: new-volume: Cannot exec: No such file or directory
tar: Error is not recoverable: exiting now
tar: ‘new-volume’ command failed
tar: Error is not recoverable: exiting now

This creates the first tar file named cd-disk.tar 650 MB correctly, but then throws an error and not continuous creaando the multivolume.

Some clue?, Thanks.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-750730">Jesusguevarautomotriz</a>.</p>
<p>Researching the multi volume tar, but I do not work for me<br />
<a target="_blank" href="http://www.gnu.org/software/tar/manual/html_node/Multi_002dVolume-Archives.html" rel="nofollow ugc">http://www.gnu.org/software/tar/manual/html_node/Multi_002dVolume-Archives.html</a></p>
<p>$ vim new-volume.sh </p>
<p>#! /bin/bash<br />
# For this script it&#8217;s advisable to use a shell, such as Bash,<br />
# that supports a TAR_FD value greater than 9.</p>
<p>echo Preparing volume $TAR_VOLUME of $TAR_ARCHIVE.</p>
<p>name=`expr $TAR_ARCHIVE : &#8216;\(.*\)-.*&#8217;`<br />
case $TAR_SUBCOMMAND in<br />
-c)       ;;<br />
-d|-x|-t) test -r ${name:-$TAR_ARCHIVE}-$TAR_VOLUME || exit 1<br />
          ;;<br />
*)        exit 1<br />
esac</p>
<p>echo ${name:-$TAR_ARCHIVE}-$TAR_VOLUME &gt;&amp;$TAR_FD</p>
<p>$ chmod 755 new-volume.sh</p>
<p>$ tar -c -L650M -f cd-disk.tar -F new-volume Videos<br />
tar: new-volume: Cannot exec: No such file or directory<br />
tar: Error is not recoverable: exiting now<br />
tar: ‘new-volume’ command failed<br />
tar: Error is not recoverable: exiting now</p>
<p>This creates the first tar file named cd-disk.tar 650 MB correctly, but then throws an error and not continuous creaando the multivolume.</p>
<p>Some clue?, Thanks.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-751017</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Mon, 15 Feb 2016 05:52:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6650#comment-751017</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-750730&quot;&gt;Jesusguevarautomotriz&lt;/a&gt;.

@Jesus,

Thanks for sharing your real life backup scenarios with us, to be fact I never use &lt;a href=&quot;http://www.tecmint.com/18-tar-command-examples-in-linux/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;tar command&lt;/a&gt;, when my data is larger than 15GB, because it takes lots of time in compressing the data or moving from one location to another. So, I always use &lt;a href=&quot;http://www.tecmint.com/rsync-local-remote-file-synchronization-commands/&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;rsync tool&lt;/a&gt; and recommend anyone who want to make a larger backups and it&#039;s easier to make a mirrors of folders in local or remote. If you still want to split the files, better user split command as shown:
&lt;pre&gt;
# split -b 1024m file.tar.gz
&lt;/pre&gt;
Read more about split command man pages..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-750730">Jesusguevarautomotriz</a>.</p>
<p>@Jesus,</p>
<p>Thanks for sharing your real life backup scenarios with us, to be fact I never use <a target="_blank" href="http://www.tecmint.com/18-tar-command-examples-in-linux/" target="_blank" rel="nofollow">tar command</a>, when my data is larger than 15GB, because it takes lots of time in compressing the data or moving from one location to another. So, I always use <a target="_blank" href="http://www.tecmint.com/rsync-local-remote-file-synchronization-commands/" target="_blank" rel="nofollow">rsync tool</a> and recommend anyone who want to make a larger backups and it&#8217;s easier to make a mirrors of folders in local or remote. If you still want to split the files, better user split command as shown:</p>
<pre>
# split -b 1024m file.tar.gz
</pre>
<p>Read more about split command man pages..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Jesusguevarautomotriz		</title>
		<link>https://www.tecmint.com/command-line-archive-tools-for-linux/comment-page-1/#comment-750730</link>

		<dc:creator><![CDATA[Jesusguevarautomotriz]]></dc:creator>
		<pubDate>Sun, 14 Feb 2016 08:00:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=6650#comment-750730</guid>

					<description><![CDATA[Do not know how will the data center to backup data, but in my tests that have been mainly do backups of files on NTFS partitions I have come to the conclusion that whenever data is lost, there are files that are not copied by permission error I have not found how to solve this problem.

My favorite tools are Rsync to back up files without compressing them. Ever I made a tar 50GB and then failed on some point after trying to unzip.

And Tar uncompressed files to store long term and/or for divide them into DVDs.

I definitely like to avoid compression to the maximum, or limit the size of compressed files according to my need is for now, the maximum size of a DVD.

What are the most efficient ways to divide files into volumes ?, eg DVDs?

These are my favorite uses of tar
$ tar -cvf dvd-001.tar -ML 4480M --totals=SIGQUIT -C source

I failed to understand understood the script indicated in the documentation for an automatic Tar multivolume.]]></description>
			<content:encoded><![CDATA[<p>Do not know how will the data center to backup data, but in my tests that have been mainly do backups of files on NTFS partitions I have come to the conclusion that whenever data is lost, there are files that are not copied by permission error I have not found how to solve this problem.</p>
<p>My favorite tools are Rsync to back up files without compressing them. Ever I made a tar 50GB and then failed on some point after trying to unzip.</p>
<p>And Tar uncompressed files to store long term and/or for divide them into DVDs.</p>
<p>I definitely like to avoid compression to the maximum, or limit the size of compressed files according to my need is for now, the maximum size of a DVD.</p>
<p>What are the most efficient ways to divide files into volumes ?, eg DVDs?</p>
<p>These are my favorite uses of tar<br />
$ tar -cvf dvd-001.tar -ML 4480M &#8211;totals=SIGQUIT -C source</p>
<p>I failed to understand understood the script indicated in the documentation for an automatic Tar multivolume.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
