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

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 

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

ソリューションへジャンプ
618件の閲覧回数
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 解決策
533件の閲覧回数
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 返信
534件の閲覧回数
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