Tell me more ×
Raspberry Pi Stack Exchange is a question and answer site for users and developers of hardware and software for Raspberry Pi. It's 100% free, no registration required.

I started out with a 2GB SD card, but I'm finding this a bit cosy, so I've bought a 16GB card to replace it. With a single Pi, can I transfer all my work between the cards, or do I need to start from scratch?

share|improve this question

1 Answer

up vote 15 down vote accepted

You should be able to copy the image, using the same application you flashed it with (or the dd command in Linux):

dd if=/dev/sdx of=/path/to/image

Where sdx represents the SD card.

This can then be flashed onto the new SD card just like the original one:

dd if=/path/to/image of=/dev/sdx

For more information, see this question:

How do I backup my Raspberry Pi?

And you can see how to increase the size of the image here:

How can I resize my / (root) partition?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.