Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Partition raw image
Name: soothsayer Date: November 23, 2005 at 17:38:59 Pacific OS: Mandrake 10 CPU/Ram: 512
Comment:
Does anyone know how to create a raw image of a partition (like a thumb drive), which is a .dd file ?
Name: Jake2 Date: November 23, 2005 at 23:22:28 Pacific
Reply:
I think the tool you're looking for is "dd".
On UNIX systems devices like your thumb drive are represented as device files that reside in the /dev directory. Drives are named "hd" for ATA drives and "sd" for SCSI, USB, and SATA drives, followed by a unique letter, and the partition number if you only want to access one parition.
Assuming you don't have any SCSI or SATA drives, your thumb drive would be "sda", so the command to make an image of the first partition would be "dd if=/dev/sda1 of=image_file" ("if" means input file, "of" means output file). I didn't use the .dd extension because extensions don't matter in UNIX and there's no general consensus regarding the extension for raw image files.
Summary: My system is: Intel P-75 Mhz, 16 MB RAM, running on Coyote Linux 1.2 as a router. I have a running floppy disk for this computer. Now I would like to create a *.raw image of this disk in order to be a...
Summary: Is there a way to create like an iso image file and use this for my linx swap partition. I didn't create a swap partition when I installed ubuntu and now I'm suffering for it. Thanks in advance ...
Summary: You can mount an iso image as you would a cdrom or hard drive....only using loopback, eg: # mount -t iso9660 -o loop=/dev/loop0 /path/to/cd.iso /mnt/cdromiso Now the contents is available in the direc...