Hi all, I have an order out for a low profile sd card holder and would like to know if it is possible to transfer my Raspbian Wheezy setup from the 8 to a 32 gb card. What say you? Is it possible? How would I go about it?
Thanks, Dan
Can i do this in Ubuntu of should I use Windows? Also what software do I need to buy to do it.Mortimer wrote:Use a computer to take an image of the 8GB card.
Restore the image to then 32GB card.
Boot the 32GB card in the Raspberry Pi and use Raspi-Config to expand the image to fill the new card.
O hi, Yeah, I was Googling how to do it when I figured out the back door. As far the dd method, don't I need to know the file path? I wasn't able to figure that one out yet.Mortimer wrote:You can use either, but if you have Ubuntu available that would probably be recommended.
Are you familiar with the 'dd' command?
I did dd if=/dev/mmcblko of=/dev/sdaUse a computer to take an image of the 8GB card.
Restore the image to then 32GB card.
Boot the 32GB card in the Raspberry Pi and use Raspi-Config to expand the image to fill the new card.
Code: Select all
dd bs=1m if={source} of={destination}BlockSize=1m is there for efficiency reason, so I don't think it matters.Mortimer wrote: I don't know how important the 'bs=1m' is, but it seemed to appear in every blog and post detailing how to use DD for imaging Raspberry Pi cards, and it always seems to work.
I was copying from Raspbian to SD card. The input was in use (obviously), but the destination was not. If there is trouble regarding mounted status, then the whole thing would have failed immediately, instead of blindly copying for 4 hours straight, or so I imagine.I suspect that you didn't unmount the volume before coping, which is required on Mac OS X, and perhaps not all was copied, because some of it was in use.
There is a write up HERE that might help you.