Unable to duplicate a SD card with uboot/root/data

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 
已解决

Unable to duplicate a SD card with uboot/root/data

跳至解决方案
1,107 次查看
g__
Contributor II

I have a working sd card with 3 partitions (uboot / root / data) for an iMX 28 system. 

I would like to duplicate the sd to another one. 

I tried with several tools  (Win32 Disk Imager, ...) but it's not booting. 

What's the right way to do it ? 

Thanks

标记 (2)
1 解答
1,022 次查看
qiang_li-mpu_se
NXP Employee
NXP Employee

You can dump the sd card on Linux PC or linux virtual machine:

sudo dd if=/dev/sdx of=~/dump.sdcard

Create the new card from the image:

sudo dd if=~/dump.sdcard of=/dev/sdx

在原帖中查看解决方案

1 回复
1,023 次查看
qiang_li-mpu_se
NXP Employee
NXP Employee

You can dump the sd card on Linux PC or linux virtual machine:

sudo dd if=/dev/sdx of=~/dump.sdcard

Create the new card from the image:

sudo dd if=~/dump.sdcard of=/dev/sdx