After Raspberry PI arrived and you spent few weeks experimenting you start realizing that you run out of space in your sd card. Especially it is true when you use some sd card which was laying around and you was happy to save 10$. Now you constantly getting out of space messages trying to install some new package.

How to move RaspberryPi to bigger SD card ?

Cloning SD card

  1. Shut down Pi ansd remove original  sd card
  2. Download and install Win32DiskImager from http://sourceforge.net/projects/win32diskimager/
  3. Insert existing original  SD card to card reader
  4. Run Win32Disk Manager and specify from which disk to clone and to what image file to save. Click “Read”
    win32DiskManager
  5. Remove original SD card to card reader
  6. Insert new SD card to card reader and click “Write”.Confirm that to you want to continue.
    win32DiskManagerWrite

Resizing partition

To re-size partitions i followed steps from http://raspberrypi.stackexchange.com/questions/499/how-can-i-resize-my-root-partition.

  1. Type sudo fdisk /dev/mmcblk0 and you will see list of partions
  2. Delete root partition – type d to delete a partition. Enter partition number 2
  3. Create new partition – type n to create a partition. Enter p to define it as primary .Specify partition number: 2
  4. You will be prompted to specify start number of partition. select default value which should be equal to value from original list printed in first step
  5. Type w to save changes
  6. Reboot sudo reboot
  7. Resize partition sudo resize2fs /dev/mmcblk0p2