<?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: Backup and Restore Linux Partitions Using Partimage</title>
	<atom:link href="http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html</link>
	<description>Debian/Ubuntu Linux System Administration Tutorials,Howtos,Tips</description>
	<lastBuildDate>Mon, 06 Feb 2012 02:01:37 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: me, myself and I</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-6281</link>
		<dc:creator>me, myself and I</dc:creator>
		<pubDate>Sat, 27 Nov 2010 12:53:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-6281</guid>
		<description>Why not just use something like:

&lt;code&gt;dd if=/dev/sda3 &#124; bzip2 &gt; ~/sda3_image.bzip2&lt;/code&gt;

to archive a partition and

&lt;code&gt; cat ~/sa3_image.bzip2 &#124; bzcat &#124; dd of=/dev/sda3&lt;/code&gt;

or

&lt;code&gt;bzcat ~/sa3_image.bzip2 &#124; dd of=/dev/sda3&lt;/code&gt;

to restore it?

To archive and restore directories together with their content, you can involve tar. IMO, it&#039;s a much more convenient solution especially for scripts.</description>
		<content:encoded><![CDATA[<p>Why not just use something like:</p>
<p><code>dd if=/dev/sda3 | bzip2 &gt; ~/sda3_image.bzip2</code></p>
<p>to archive a partition and</p>
<p><code> cat ~/sa3_image.bzip2 | bzcat | dd of=/dev/sda3</code></p>
<p>or</p>
<p><code>bzcat ~/sa3_image.bzip2 | dd of=/dev/sda3</code></p>
<p>to restore it?</p>
<p>To archive and restore directories together with their content, you can involve tar. IMO, it&#8217;s a much more convenient solution especially for scripts.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Talal</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-5603</link>
		<dc:creator>Talal</dc:creator>
		<pubDate>Wed, 11 Aug 2010 12:34:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-5603</guid>
		<description>The best backup manager using livecd is clonezella with mbr and first sectors backup!</description>
		<content:encoded><![CDATA[<p>The best backup manager using livecd is clonezella with mbr and first sectors backup!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VPC</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-4524</link>
		<dc:creator>VPC</dc:creator>
		<pubDate>Wed, 03 Mar 2010 08:05:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-4524</guid>
		<description>Some options in partimage to backup the MBR and the partition&#039;s table should be really helpful ...</description>
		<content:encoded><![CDATA[<p>Some options in partimage to backup the MBR and the partition&#8217;s table should be really helpful &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: VPC</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-4523</link>
		<dc:creator>VPC</dc:creator>
		<pubDate>Wed, 03 Mar 2010 08:03:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-4523</guid>
		<description>It seems to be that grub is not in backups made by partimage, and restoring it is a mess
(use live cd, mount the target partition, run grub with manual options to reinstall it on hard drive)  ...
I think I&#039;ll keep my backup procedure:

http://www.inference.phy.cam.ac.uk/saw27/notes/backup-hard-disk-partitions.html
+
http://www.computerhope.com/unix/usplit.htm
+
http://www.computerhope.com/unix/ucat.htm

This allows me to backup everything or just some partitions and the partition table ...
and just by using a simple linux command: dd (and helpers: gzip, bzip2, split and cat)</description>
		<content:encoded><![CDATA[<p>It seems to be that grub is not in backups made by partimage, and restoring it is a mess<br />
(use live cd, mount the target partition, run grub with manual options to reinstall it on hard drive)  &#8230;<br />
I think I&#8217;ll keep my backup procedure:</p>
<p><a href="http://www.inference.phy.cam.ac.uk/saw27/notes/backup-hard-disk-partitions.html" rel="nofollow">http://www.inference.phy.cam.ac.uk/saw27/notes/backup-hard-disk-partitions.html</a><br />
+<br />
<a href="http://www.computerhope.com/unix/usplit.htm" rel="nofollow">http://www.computerhope.com/unix/usplit.htm</a><br />
+<br />
<a href="http://www.computerhope.com/unix/ucat.htm" rel="nofollow">http://www.computerhope.com/unix/ucat.htm</a></p>
<p>This allows me to backup everything or just some partitions and the partition table &#8230;<br />
and just by using a simple linux command: dd (and helpers: gzip, bzip2, split and cat)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jonah Libster</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-4449</link>
		<dc:creator>Jonah Libster</dc:creator>
		<pubDate>Fri, 19 Feb 2010 06:17:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-4449</guid>
		<description>In repsonse to Troung, you don&#039;t need the &quot;*&quot;. Just the name of the file before. Just try the file name for example: you see file &quot;test_server_1.img.000*&quot; just put &quot;test_server_1.img.000&quot; and you&#039;re in business.</description>
		<content:encoded><![CDATA[<p>In repsonse to Troung, you don&#8217;t need the &#8220;*&#8221;. Just the name of the file before. Just try the file name for example: you see file &#8220;test_server_1.img.000*&#8221; just put &#8220;test_server_1.img.000&#8243; and you&#8217;re in business.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raabia</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-3823</link>
		<dc:creator>Raabia</dc:creator>
		<pubDate>Wed, 14 Oct 2009 15:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-3823</guid>
		<description>Use the space key to select some option</description>
		<content:encoded><![CDATA[<p>Use the space key to select some option</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: truong</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1638</link>
		<dc:creator>truong</dc:creator>
		<pubDate>Sat, 20 Dec 2008 17:26:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1638</guid>
		<description>Hi all,

I followed the instruction and I was successful with image creation. But I got a problem when I restore the partition from image. I can&#039;t put the star (*) at &quot;Restore partition from an image file&quot;. It always stay at the first choice. I can&#039;t even make it move.

Could you give me a suggestion? I&#039;m using Ubuntu 8.10. Thanks</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>I followed the instruction and I was successful with image creation. But I got a problem when I restore the partition from image. I can&#8217;t put the star (*) at &#8220;Restore partition from an image file&#8221;. It always stay at the first choice. I can&#8217;t even make it move.</p>
<p>Could you give me a suggestion? I&#8217;m using Ubuntu 8.10. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: worm</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1637</link>
		<dc:creator>worm</dc:creator>
		<pubDate>Wed, 26 Nov 2008 15:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1637</guid>
		<description>Hi all,

i have a problem : how manage partimage users :
how add user to the file : /etc/partimaged/passwd.db

we can t add user with partimaged-passwd command

thanks,

philippe</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>i have a problem : how manage partimage users :<br />
how add user to the file : /etc/partimaged/passwd.db</p>
<p>we can t add user with partimaged-passwd command</p>
<p>thanks,</p>
<p>philippe</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vatocleti</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1635</link>
		<dc:creator>Vatocleti</dc:creator>
		<pubDate>Fri, 26 Sep 2008 16:54:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1635</guid>
		<description>Hi all,
  I want to create a file system as UFS. I have seen some command use &#039;mkfs.ufs ....&#039; or &#039;mkfs -t ufs ...&#039; but I can&#039;t seem to find the mkfs apt-get package that has the ufs support. Does anybody know the name of the package? I&#039;m using Ubuntu.

Thanks,
-v</description>
		<content:encoded><![CDATA[<p>Hi all,<br />
  I want to create a file system as UFS. I have seen some command use &#8216;mkfs.ufs &#8230;.&#8217; or &#8216;mkfs -t ufs &#8230;&#8217; but I can&#8217;t seem to find the mkfs apt-get package that has the ufs support. Does anybody know the name of the package? I&#8217;m using Ubuntu.</p>
<p>Thanks,<br />
-v</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Spingfield</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1636</link>
		<dc:creator>Spingfield</dc:creator>
		<pubDate>Sun, 21 Sep 2008 21:25:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1636</guid>
		<description>&quot;hi…
i tried this…
but when i go to reboot after restoration, i get a black screen with:

GRUB _

in the top left…&quot;

Same problem I have...
I like linux but on Windows I havent likely problems with ghost.
Just googling for solution, have no ideas to solve</description>
		<content:encoded><![CDATA[<p>&#8220;hi…<br />
i tried this…<br />
but when i go to reboot after restoration, i get a black screen with:</p>
<p>GRUB _</p>
<p>in the top left…&#8221;</p>
<p>Same problem I have&#8230;<br />
I like linux but on Windows I havent likely problems with ghost.<br />
Just googling for solution, have no ideas to solve</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teak</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1634</link>
		<dc:creator>teak</dc:creator>
		<pubDate>Mon, 24 Sep 2007 01:26:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1634</guid>
		<description>hi...
i tried this...
but when i go to reboot after restoration,  i get a black screen with:

GRUB _

in the top left...

i rebooted with systemrescuecd looked in the grub devices.map and the harddisc was pointing to my disc /dev/sda...
ive tried getting aroud this for the past two days...
ive looked around online to no avail...
can any one help me?

thanks...</description>
		<content:encoded><![CDATA[<p>hi&#8230;<br />
i tried this&#8230;<br />
but when i go to reboot after restoration,  i get a black screen with:</p>
<p>GRUB _</p>
<p>in the top left&#8230;</p>
<p>i rebooted with systemrescuecd looked in the grub devices.map and the harddisc was pointing to my disc /dev/sda&#8230;<br />
ive tried getting aroud this for the past two days&#8230;<br />
ive looked around online to no avail&#8230;<br />
can any one help me?</p>
<p>thanks&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1632</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Sat, 15 Sep 2007 09:40:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1632</guid>
		<description>Hi Admin,

Please ignore the question I have posted earlier.</description>
		<content:encoded><![CDATA[<p>Hi Admin,</p>
<p>Please ignore the question I have posted earlier.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jerry</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1633</link>
		<dc:creator>Jerry</dc:creator>
		<pubDate>Sat, 15 Sep 2007 05:59:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1633</guid>
		<description>Hi Admin,

Is there a way that I could automate the backup through scheduling Partimage?

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi Admin,</p>
<p>Is there a way that I could automate the backup through scheduling Partimage?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Linux Disaster Recovery Software</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1631</link>
		<dc:creator>Linux Disaster Recovery Software</dc:creator>
		<pubDate>Tue, 26 Jun 2007 06:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1631</guid>
		<description>Thanks for the useful information. It really helps</description>
		<content:encoded><![CDATA[<p>Thanks for the useful information. It really helps</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nick</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1630</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Fri, 09 Feb 2007 06:29:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1630</guid>
		<description>Fede
you have to unmount before you can use partimage. I suggest booting from a live cd</description>
		<content:encoded><![CDATA[<p>Fede<br />
you have to unmount before you can use partimage. I suggest booting from a live cd</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: fede</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1629</link>
		<dc:creator>fede</dc:creator>
		<pubDate>Thu, 08 Feb 2007 12:25:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1629</guid>
		<description>Hi,i would like to backup the root partition,but it refuse because is mounted.Can help me?</description>
		<content:encoded><![CDATA[<p>Hi,i would like to backup the root partition,but it refuse because is mounted.Can help me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ernie</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1628</link>
		<dc:creator>Ernie</dc:creator>
		<pubDate>Thu, 01 Feb 2007 04:31:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1628</guid>
		<description>There is also the System Rescue CD. You can download the .iso image from &lt;a HREF=&quot;http://www.sysresccd.org/Main_Page&quot; rel=&quot;nofollow&quot;&gt;here&lt;/A&gt; then burn it to CD. It creates (as the name implies) a bootable rescue disk.

System Rescue CD uses Partimage to create partition images, and includes many other system rescue utilities too. The link above takes you to the main page of System Rescue CD where you can learn more :).</description>
		<content:encoded><![CDATA[<p>There is also the System Rescue CD. You can download the .iso image from <a HREF="http://www.sysresccd.org/Main_Page" rel="nofollow">here</a> then burn it to CD. It creates (as the name implies) a bootable rescue disk.</p>
<p>System Rescue CD uses Partimage to create partition images, and includes many other system rescue utilities too. The link above takes you to the main page of System Rescue CD where you can learn more <img src='http://www.debianadmin.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Whitney</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1627</link>
		<dc:creator>Whitney</dc:creator>
		<pubDate>Wed, 31 Jan 2007 08:25:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1627</guid>
		<description>Just noticed that my home page needed correcting. Cheers, Dan.</description>
		<content:encoded><![CDATA[<p>Just noticed that my home page needed correcting. Cheers, Dan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HackITLinux</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1626</link>
		<dc:creator>HackITLinux</dc:creator>
		<pubDate>Mon, 22 Jan 2007 23:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1626</guid>
		<description>&lt;strong&gt;Backing up a partition...&lt;/strong&gt;

We all know the importance of backing up your data. Most of the time, we back up files and subdirectories into tapes, optical media, network-attached storage devices, storage area network and/or a spare hard drive. There are instances, however, that......</description>
		<content:encoded><![CDATA[<p><strong>Backing up a partition&#8230;</strong></p>
<p>We all know the importance of backing up your data. Most of the time, we back up files and subdirectories into tapes, optical media, network-attached storage devices, storage area network and/or a spare hard drive. There are instances, however, that&#8230;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sureinlux</title>
		<link>http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html/comment-page-1#comment-1625</link>
		<dc:creator>sureinlux</dc:creator>
		<pubDate>Tue, 02 Jan 2007 19:49:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.debianadmin.com/backup-and-restore-linux-partitions-using-partimage.html#comment-1625</guid>
		<description>Apparently the Partimage fro amd64 under Egdy Eft Ubuntu does not work (a filed bug # 19124) site:https://launchpad.net/distros/ubuntu/+bug/19124</description>
		<content:encoded><![CDATA[<p>Apparently the Partimage fro amd64 under Egdy Eft Ubuntu does not work (a filed bug # 19124) site:<a href="https://launchpad.net/distros/ubuntu/+bug/19124" rel="nofollow">https://launchpad.net/distros/ubuntu/+bug/19124</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

