View Single Post
Posts: 2,152 | Thanked: 1,490 times | Joined on Jan 2006 @ Czech Republic
#12
Originally Posted by GeraldKo View Post
What does one do to "save a master boot record with partition table"?
It is the first sector on disk/card. As root copy it to file like:
Code:
dd if=/dev/mmcblk0 of=my4gbsandisk.bin bs=512 count=1
This makes copy of master boot record of card in internal slot to my4gbsandisk.bin file (1 sector of 512 bytes), store it somewhere safe (not to the card itself :-)

you can later restore it by switching if (input file) and of (output file) arguments in the dd command above
__________________
Newbies click here before posting. Thanks.

If you really need to PM me with troubleshooting question please consider posting it to the forum instead. It is OK to PM me a link to such post then. Thank you.
 

The Following 2 Users Say Thank You to fanoush For This Useful Post: