I'm having problem to use this command under windows
dd if=*file* of=/dev/sdx bs=512 seek=2 conv=fsync
Using cygwin shell:
$ dd if=file of=/cygdrive/f bs=512 seek=2 conv=fsync
dd: failed to open ‘/cygdrive/f’: Is a directory
F: is the letter where my SD Card is mapped. What's the way to access it?
As you wrote
dd if=file of=/dev/sdxso you need to identify the device namesdxequivalent for your diskF:On my system:
so
/dev/sdbis the full USB hardisk and/dev/sdb1is the first partition.Pay attention to what you are doing.
ddis a dangerous tool and can destroy your data/system