LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Desktop (https://www.linuxquestions.org/questions/linux-desktop-74/)
-   -   Create a mountable disk image of Windows partition (https://www.linuxquestions.org/questions/linux-desktop-74/create-a-mountable-disk-image-of-windows-partition-661844/)

tnine9 08-10-2008 04:35 PM

Create a mountable disk image of Windows partition
 
Hi all,
I'm in the process of installing Windoze (again) on my wife's computer. I typically use gparted as my boot disk and clean/wipe parititons. I'm paranoid of forgetting to copy something important from her drive before I reformat it, so I'd like to take a disk image. I know this can normally be accomplished with "partimage" as described here.

http://lifehacker.com/software/geek-...-cd-292972.php

However, it seems that this image is not mountable. I will be putting it on an external WD USB Passport drive to keep as a backup for a couple of months. If I've missed something that's not recoverable from her nightly backup, then I want to mount the drive image and pull data off of it. Does anyone know of any *nix utilities that will do this?

Thanks,
Todd

johnson_steve 08-10-2008 05:47 PM

I haven't used that tool. I usualy just use dd like this:
Code:

dd if=/dev/hda1 of=hda1.img bs=512
then mount it like this:
Code:

mount -o loop hda1.img /mnt/windoze/
you'll have to change a few things around to make that work for you but, you get the idea.

teckk 08-10-2008 07:02 PM

This thread has been around for a while but is a good DD tutor.
http://www.linuxquestions.org/questi...ommand-366442/

jschiwal 08-10-2008 07:13 PM

Make sure that you don't save the image on a fat32 formatted external drive. It has a limit of 4GB filesize and the image will probably be larger.


All times are GMT -5. The time now is 08:36 AM.