| Post Title | Posted | Description |
|---|---|---|
Parent Directory
|
||
| Reimaging your computer with Partimage | 2006-06-02 10:04 | At your own risk, as always when tinkering with stuff |
Partimage is an Open Source software for capturing an image of a drive and restoring it later. It works with ext2/ext3, reiserfs, fat16/32, jfs, xfs, ufs, hpfs, hfs and ntfs file systems. You can create/restore images of hard drives, usb memory keys, floppy disks etc. So without further introduction, here's how I prefer to use partimage:
I either boot from Knoppix live CD or into one of my Linux installs
Then I make sure that the partition I want to capture into an image file is NOT mounted and the partition where I want to save the image file IS mounted.
Then I open partimage by typing partimage
In the top of the screen that comes up…
When saving an image, in the next screen…
When saving an image, in the next screen I sometimes enter description of what I'm capturing. When I'm restoring an image I just confirm the image file I've selected.
When I'm in a command-line mood, to save a partition I type
partimage -z1 -d save /dev/sda2 /mnt/home/andrej/images/XPinstalled.gz
…and to restore it, I type
partimage restore /dev/sda2 /mnt/home/andrej/images/XPinstalled.gz
Leave a Comment