* Kent West ([EMAIL PROTECTED]) [030927 08:27]:
> I've got two 128MB flash cards. One of them is a SanDisk brand, and from 
> what I've found on the web are prone to "dying". Mine has died. However, 
> before giving up on it completely, I thought I'd see if I could clone an 
> image from the second (PNY brand) to the dead SD unit. I'm figuring the 
> "dd" command is probably my friend here, but I really don't know for sure.
> 
> Can anyone give me a command with correct syntax for making a 
> bit-for-bit copy of one flash card to an image on the hard drive, and 
> then to copy that image from the hard drive to the second flash card?

We're talking about compact flash, right?  IME, they've just got a vfat
filesystem on them.  You can just mount them directly and use tar.  It's
not exactly what you asked for (an image), but it should work just fine.

Otherwise, to create an image, you could just cat them around.  Insert
(but don't mount) the source, cat /dev/sda1 > cf.img .  Then put in the
other one, and cat cf.img > /dev/sda1 .  That should work.  The only
reason I suggest that instead of giving a proper dd command line is that
I don't know precisely what block size to give to dd.

Unless you have some very special requirement, though, I'd say the best
way to move the data around is to mount it and deal with the files, not
trying to mess around with images.

As a test, if you do cat /dev/sda1 to a file, you could see if you can
mount it the image file via -o loop, before catting it out onto the
target card.

good times,
Vineet
-- 
http://www.doorstop.net/
-- 
http://www.digitalconsumer.org/ Protecting fair-use rights in the digital world

Attachment: pgp00000.pgp
Description: PGP signature

Reply via email to