Backup CF disk data to image

0

  • Is it possible to backup Compact Flash (CF) disk data to an image file and restore later?
  • Can you please give some pointers on the same?

18bytes

Posted 2011-08-04T20:49:13.543

Reputation: 295

Answers

2

Backup:

$ dd if=/dev/sdX of=cf_card.img

Restore:

$ dd if=cf_card.img of=/dev/sdX

EEAA

Posted 2011-08-04T20:49:13.543

Reputation: 1 864

ErikA: 'dd' is not recognized as an internal or external command, operable program or batch file. Or: dd: /dev/sdg: No such file or directory :) – Sven – 2011-08-04T20:55:16.423

Hehe. In the case of a question where the OS isn't specified, I just default to linux/BSD. They ought to be using that anyway. :) – EEAA – 2011-08-04T20:56:47.233