I have a 8 GB SD card (card 1) installed with embedded Linux for PowerPC, libraries and some applications. I want to prepare another 8 GB SD card (card 2) exactly like card 1. What is the easiest way to do this?
I tried copying all the files from card 1 to a Linux laptop and then from the laptop to card 2, but I am getting some permission denied errors in spite to doing this as root. Is my approach correct? Please suggest any other techniques.
bs=1M
) to speed up the transfer. You can usedd if=/dev/<your_sd_card> of=/path/to/file
to copy the sd card to an imagefile and then after plugging in your new SD card:dd if=/path/to/file of=/dev/<your_sd_card>
to copy the image to the SD card – jofel Feb 12 '14 at 14:20