08-04-2015, 10:48 PM
I already realized the error I made. dd should be:
dd if=/dev/sdc of=/path/to/file.tc bs=512 skip=62 count=1
I reversed count and bs, and skip should be number of sectors rather than bytes.
dd if=/dev/sdc of=/path/to/file.tc bs=512 skip=62 count=1
I reversed count and bs, and skip should be number of sectors rather than bytes.