Cloning an SD card onto a larger SD card

8

2

I'm using Ubuntu 12.04. I have an old 4GB SD card, and have just bought a new 16GB SD card. I would like to copy everything from my old 4GB SD card onto the new 16GB SD card. I was afraid that the usual copy-and-paste trick would miss out something, so I wanted to clone the old 4GB SD card onto the 16GB SD card. I used the dd command in a shell, following instructions in this link.

This worked with one small caveat. The new SD card now appeared to be 4GB. I later found out this is because the primary partition on the 16GB SD card has now shrunk to 4GB. I have solved this problem, and I think I understand it. However, my question now is, how do I clone my old 4GB SD card onto my new 16GB SD card without making the primary partition on the 16GB SD card shrink to 4GB?

Ray

Posted 2012-08-12T12:29:16.467

Reputation: 315

Answers

4

You will allways shrink your primary primary partition to the size of the copied one unless you copy the contents of your partitions with dd.

I assume you did something like sudo dd if=/dev/sda/ of=/dev/sdb bs=4k or used an image file as temporary storage if you don't have two SD card slots. With this command you copied the partition as well as the partition table to the new SD card.

Try this (assuming your partitions are called /dev/sda1):

  • put in your 4 GB SD card
  • sudo dd if=/dev/sda1 of=~/sdcard.bin
  • put in your 16 GB SD card and make sure the primary partition spans over the whole 16 GB
  • sudo dd if=~/sdcard.bin of=/dev/sda1

This should copy only the contents of your partitions.


You could also simply resize the partition on your new SD card. If you'd like to have some information on that, you have to tell us which filesystem is used on your SD cards.

wullxz

Posted 2012-08-12T12:29:16.467

Reputation: 2 400

Maybe this is a problem with exfat but for me this also didn't work :/ – codewing – 2019-12-25T00:39:47.980

For exfat this does not work. – Rainer Glüge – 2020-01-15T22:39:01.917

2Thank you very much for you reply! But exactly the same thing happened with your method. If I understand it correctly, am I right to say that the difference in your method is that you use 'sda1' instead of 'sda'? So that in this way, you're targetting the partition instead of the whole drive? That made intuitive sense to me, and I thought it would work, but it didn't. My new 16GB SD card was recognised as one of 4GB again. – Ray – 2012-08-12T18:28:45.973

1

Same thing happened here. Actually, I used the command with sda1, not sda. The easy way out is to use Gparted:

  • Right click on the partition.
  • Select check.
  • Run the check with Gparted (green check).
  • Gparted attempts to correct partition errors.

In my case it did. The SDHC card now read the 16GB correctly (before GParted showed the cloned partition as used space within the partition). Incredible how powerful Ubuntu and these Ubuntu tools are, when you master them. Hope this helps.

Earendil Star

Posted 2012-08-12T12:29:16.467

Reputation: 11

1

Even if you set the partition size to be 16GB, the filesystem metada was created thinking for a 4GB partition and won't grow automatically.

The easier way to fix it is to fire up gparted and stretch the partition to use the entire disk - it will take care of fixing both the partition and the filesystem.

If you had no partition table on the old SD card, dump sda and create the sda1 partition with 16GB on the new card and use dd to write the image to that partition. You will still need a check with gparted like @Earendil described.

Renan

Posted 2012-08-12T12:29:16.467

Reputation: 551