Convert 4gb Memory Card To 8gb Software Store
Convert 4gb Memory Card To 8gb Software Store In California
How to convert my 2gb pendrive or memory into 4gb. Drive Memory increaser software download and increase your flash drive memory up to 4gb.. This software is also applicable for 1gb to 4gb. Download and and enjoy.
I need the whole system, all scheduled data, settings, and overall everything I have on the SD card (linux) with 4GB convert to another SD card. How can I do this? My notebook have ubuntu.
Both cards in my PC.
Old card (4GB): / dev/mmcblk0
New card (8GB): / dev/sda1
2 Answers
Probably you don't want a 4G partition table, a 4G partition,and a 4G filesystem on your 8G card, but that's what you'll get when you use dd. This should work, unless you have bad blockson your 8G, which dd will just assume are good. To use theadditional space, you would need to expand the partition, resize the filesystem, and maybe thenedit the /etc/fstab file for new UUIDs. The alternative is to partition the 8G disk theway you want it, setting the size of root, and decidingif you really want swap. Format the partition(s) withthe filesystem you want -- maybe no journaling on anSD card, so ext2 or ext4 without journaling. Copythe files over with any copy program which can copy fileattributes and not follow links (look at the option switches).tar works just fine with the following:

Get the new UUIDs with

Edit the /etc/fstab with the new UUIDs.Install grub to the 8G disk (assume it's sdc)
Bad blocks on the target card should be recognized and avoided, so you get a working system without a perfectcard.
ubfan1
ubfan1What filesystem?
For ext, you can create an 8gb partition, then use DD to copy the 4gb partition on top, then use resize2fs to expand it to fill the space.
There might be similar utilities for other file systems.