<?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 Backup or Clone Linux Partitions Using &#8216;cat&#8217; Command	</title>
	<atom:link href="https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/</link>
	<description>Tecmint - Linux Howtos, Tutorials, Guides, News, Tips and Tricks.</description>
	<lastBuildDate>Thu, 13 Jul 2023 21:44:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	
	<item>
		<title>
		By: Bob Brunius		</title>
		<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-1513318</link>

		<dc:creator><![CDATA[Bob Brunius]]></dc:creator>
		<pubDate>Sun, 30 May 2021 17:48:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=19885#comment-1513318</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-1513317&quot;&gt;Bob Brunius&lt;/a&gt;.

BTW running:
&lt;pre&gt;
$ sudo dd if=/dev/sda2  of=/dev/sdb1 
&lt;/pre&gt;
had no permission issue and it ran ok for me.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-1513317">Bob Brunius</a>.</p>
<p>BTW running:</p>
<pre>
$ sudo dd if=/dev/sda2  of=/dev/sdb1 
</pre>
<p>had no permission issue and it ran ok for me.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Bob Brunius		</title>
		<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-1513317</link>

		<dc:creator><![CDATA[Bob Brunius]]></dc:creator>
		<pubDate>Sun, 30 May 2021 17:41:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=19885#comment-1513317</guid>

					<description><![CDATA[I&#039;m trying to do this as shown but I&#039;m getting &quot;&lt;strong&gt;permission denied&lt;/strong&gt;&quot; when running:
&lt;pre&gt;
$ sudo cat /dev/sda2 &#062; /dev/sdb1
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m trying to do this as shown but I&#8217;m getting &#8220;<strong>permission denied</strong>&#8221; when running:</p>
<pre>
$ sudo cat /dev/sda2 &gt; /dev/sdb1
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ravi Saive		</title>
		<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-872219</link>

		<dc:creator><![CDATA[Ravi Saive]]></dc:creator>
		<pubDate>Thu, 02 Mar 2017 05:35:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=19885#comment-872219</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-872056&quot;&gt;dzaczek&lt;/a&gt;.

@Daczek,

I agree with you, we should change the uuid after creating a clone or copying disk and thanks for sharing the commands for changing the UUID in Linux. Hope it will help other users..]]></description>
			<content:encoded><![CDATA[<p>In reply to <a target="_blank" href="https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-872056">dzaczek</a>.</p>
<p>@Daczek,</p>
<p>I agree with you, we should change the uuid after creating a clone or copying disk and thanks for sharing the commands for changing the UUID in Linux. Hope it will help other users..</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: dzaczek		</title>
		<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-872056</link>

		<dc:creator><![CDATA[dzaczek]]></dc:creator>
		<pubDate>Wed, 01 Mar 2017 15:58:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=19885#comment-872056</guid>

					<description><![CDATA[Hi,
 
Nice tutorial but when we cloning partition/disk must remember about change &lt;strong&gt;uuid&lt;/strong&gt; after copy. If disk will stay connected to machine after reboot we can have problem with mount by &lt;strong&gt;uuid&lt;/strong&gt;.

Sometimes we want to have the same &lt;strong&gt;uuid&lt;/strong&gt; but you must remember to remove the disk from the server for xfs file system.
&lt;pre&gt;
# xfs_admin -U {uuid} {device}
&lt;/pre&gt;
for ext file systems
&lt;pre&gt;
# tune2fs /dev/{device}  -U time 
&lt;/pre&gt;
For reiserfs 
&lt;pre&gt;
# tunefs.reiserfs -i {uuid} {device}
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Nice tutorial but when we cloning partition/disk must remember about change <strong>uuid</strong> after copy. If disk will stay connected to machine after reboot we can have problem with mount by <strong>uuid</strong>.</p>
<p>Sometimes we want to have the same <strong>uuid</strong> but you must remember to remove the disk from the server for xfs file system.</p>
<pre>
# xfs_admin -U {uuid} {device}
</pre>
<p>for ext file systems</p>
<pre>
# tune2fs /dev/{device}  -U time 
</pre>
<p>For reiserfs </p>
<pre>
# tunefs.reiserfs -i {uuid} {device}
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: James pinkerton		</title>
		<link>https://www.tecmint.com/backup-or-clone-linux-partitions-using-cat-command/comment-page-1/#comment-797962</link>

		<dc:creator><![CDATA[James pinkerton]]></dc:creator>
		<pubDate>Thu, 07 Jul 2016 07:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.tecmint.com/?p=19885#comment-797962</guid>

					<description><![CDATA[Morning Ravi, I see what cat does and just wondered why when making a bootable usb pen-drive the code listed on most web-sites uses dd if=whatever.iso of=/dev/sdb,  I read that dd copies saved files byte by byte probably from ascii coded text, how does cat work.  I am a novice user of Linux, currently taking in all knowledge to gain my &quot; Red-Hat CSA&quot;.  I use your website daily, very informative chunk size blocks of data.  Thank you]]></description>
			<content:encoded><![CDATA[<p>Morning Ravi, I see what cat does and just wondered why when making a bootable usb pen-drive the code listed on most web-sites uses dd if=whatever.iso of=/dev/sdb,  I read that dd copies saved files byte by byte probably from ascii coded text, how does cat work.  I am a novice user of Linux, currently taking in all knowledge to gain my &#8221; Red-Hat CSA&#8221;.  I use your website daily, very informative chunk size blocks of data.  Thank you</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
