Create Win 10 disk partition image on Linux
23 Jan 2020Backup MBR
dd if=/dev/sda of=/boot/boot.NNNN bs=512 count=1
Recovery MBR
dd if=/boot/boot.NNNN of=/dev/sda bs=512 count=1
If want keep DPT, change bs=512
to bs=446
. 1
-
https://blog.csdn.net/xiongyangg/article/details/20629737 ↩