<?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 Do I Make Linux / UNIX Filesystem Backup With dd?</title> <atom:link href="http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html/feed" rel="self" type="application/rss+xml" /><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html</link> <description>This is a Linux sys admin journal by Vivek about sys admin work, Linux tips &#38; tricks, hacks, news and more.</description> <lastBuildDate>Fri, 10 Feb 2012 20:37:43 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <item><title>By: CesarIII</title><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-172601</link> <dc:creator>CesarIII</dc:creator> <pubDate>Wed, 20 Jul 2011 05:00:41 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-172601</guid> <description>Hi there,
If you are trying tu backup an USB you can try &quot;dd&quot; + &quot;gzip&quot; so you can compress your backed-up-data. You can improve compression ratio, and even more, If you create a file filled with &quot;0&quot; an then delete it, you&#039;ll obtain a smallest file:
To create a file with &quot;0&quot; so we erase the free area:
dd if=/dev/zero of=DELETE.ME
Once created, delete it.
Once deleted, backup:
dd if=/dev/usbflashdrive &#124; gzip --best &gt; backup.img.gz
You can improve reading/writing by adding &quot;bs&quot; or &quot;obs&quot; on dd... check &quot;man dd&quot;
dd obs=100MB if=/dev/usbflashdrive &#124; gzip --best &gt; backup.img.gz
Make tests... eh!... to restore just do a:
gunzip -c backup.img.gz &#124; dd bs=100MB of=/dev/usbflashdrive
Regards,
CesarIII</description> <content:encoded><![CDATA[<p>Hi there,</p><p>If you are trying tu backup an USB you can try &#8220;dd&#8221; + &#8220;gzip&#8221; so you can compress your backed-up-data. You can improve compression ratio, and even more, If you create a file filled with &#8220;0&#8243; an then delete it, you&#8217;ll obtain a smallest file:</p><p>To create a file with &#8220;0&#8243; so we erase the free area:</p><p>dd if=/dev/zero of=DELETE.ME</p><p>Once created, delete it.<br
/> Once deleted, backup:</p><p>dd if=/dev/usbflashdrive | gzip &#8211;best &gt; backup.img.gz</p><p>You can improve reading/writing by adding &#8220;bs&#8221; or &#8220;obs&#8221; on dd&#8230; check &#8220;man dd&#8221;</p><p>dd obs=100MB if=/dev/usbflashdrive | gzip &#8211;best &gt; backup.img.gz</p><p>Make tests&#8230; eh!&#8230; to restore just do a:</p><p>gunzip -c backup.img.gz | dd bs=100MB of=/dev/usbflashdrive</p><p>Regards,<br
/> CesarIII</p> ]]></content:encoded> </item> <item><title>By: Dave</title><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-171417</link> <dc:creator>Dave</dc:creator> <pubDate>Thu, 19 May 2011 16:59:33 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-171417</guid> <description>I would like to use dd to make a backup of my USB flash drive to my HDD, I&#039;m using a Live CD, both are unmounted.
I tried:
dd if=/dev/usbflashdrive of=/dev/sda1&gt;usbdiskdate.img
This destroyed the ext3 partition.
Any suggestions for improvement?</description> <content:encoded><![CDATA[<p>I would like to use dd to make a backup of my USB flash drive to my HDD, I&#8217;m using a Live CD, both are unmounted.<br
/> I tried:<br
/> dd if=/dev/usbflashdrive of=/dev/sda1&gt;usbdiskdate.img<br
/> This destroyed the ext3 partition.</p><p>Any suggestions for improvement?</p> ]]></content:encoded> </item> <item><title>By: Eric J</title><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-163854</link> <dc:creator>Eric J</dc:creator> <pubDate>Thu, 16 Dec 2010 11:19:29 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-163854</guid> <description>I never knew about this tool. I was only recently exposed to it while reading how one man managed to boot ubuntu on the CR-48. He dd&#039;ed the ubuntu rootfs to the CR-48 over ssh. SO. COOL.</description> <content:encoded><![CDATA[<p>I never knew about this tool. I was only recently exposed to it while reading how one man managed to boot ubuntu on the CR-48. He dd&#8217;ed the ubuntu rootfs to the CR-48 over ssh. SO. COOL.</p> ]]></content:encoded> </item> <item><title>By: A person</title><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-149136</link> <dc:creator>A person</dc:creator> <pubDate>Thu, 25 Jun 2009 19:34:08 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-149136</guid> <description>RE: Jann...
dunno, give it a try.  In unixland, you&#039;d do something like:
mkdir /mnt/mountpoint
mount -t ext3 /somepath/ /mnt/mountpoint</description> <content:encoded><![CDATA[<p>RE: Jann&#8230;</p><p>dunno, give it a try.  In unixland, you&#8217;d do something like:<br
/> mkdir /mnt/mountpoint<br
/> mount -t ext3 /somepath/ /mnt/mountpoint</p> ]]></content:encoded> </item> <item><title>By: Jann</title><link>http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-146960</link> <dc:creator>Jann</dc:creator> <pubDate>Wed, 28 Jan 2009 19:08:18 +0000</pubDate> <guid
isPermaLink="false">http://www.cyberciti.biz/tips/how-do-i-make-linux-filesystem-backup-with-dd.html#comment-146960</guid> <description>I know that you can later on mount partition-level dd dumps. Can you also somehow mount the dump of an entire disk?</description> <content:encoded><![CDATA[<p>I know that you can later on mount partition-level dd dumps. Can you also somehow mount the dump of an entire disk?</p> ]]></content:encoded> </item> </channel> </rss>
