I have a 32GB card in my note 2
I am getting a 64GB card. So All I need to do is
1. Format new card(FAT32?)
2.copy all files from old card to new card
3. Insert new card
Anything else I need to do?
Lot of my apps are installed on SD card (no special application, but using android built in move to SD card)
Yes
That all you need to do. Or at least that is all I have done for every SD upgrade that I have done, and I've had no problems.
steve:good:
I did the same, no issue. enjoy your bigger sd
Fat32 or extfat
fat32 is fine , always what i have done , also it 'd be best if you use this tool , google for it "sd formatter"
You cannot copy big files more than 4GB on Fat32 file system. You should use ExFat if you have such files.
[email protected] said:
You cannot copy big files more than 4GB on Fat32 file system. You should use ExFat if you have such files.
Click to expand...
Click to collapse
I have no problem with native exFAT(I assume this is how the card will come formatted),
However, since I have certain APPS which are on SD card, will a standard copy all files and folders to new card approach work, or I am in for some headache?
Okay, I kept is exFAT, and then copied all files from 32GB card to 64GB card. Works like a dream!
Thanks for your help!
Apps on SD card also work fine
Related
Hey guys, currently i'm using a 1gb sd card with cyan rom installed to my htc dream phone.
If I want to change to a higher capacity sd card, how should i go about doing it? In terms of the applications and stuffs?
Do you have your sdcard partitioned in any way? if its only a fat32 formatted card, you can simply format the new one fat32 and copy all files from the old card to the new. If you have it partitioned, match the smaller partitions on the new card (match sizes of ext 2/3/3 and linux swap if you have one and copy files accordingly) and copy old fat32 stored files onto new one (the fat32 partition size difference should not effect anything). I've tried this myself a few months back upgrading from a 4gb class 4 to an 8gb class 6 and I had no issues. Just be sure both cards were partitioned with the same program if you are using linux [I run Ubuntu], otherwise you may run into admin permission problems
Mine is formatted in the way in this site: http://wiki.cyanogenmod.com/index.php/Full_Update_Guide_-_G1/Dream/Magic32B_Firmware_to_CyanogenMod
So how should I go about doing it?
everytime i download a file or anything from the web, instead of creating a download folder in the root of the SD card, it created one under the Internal Storage....how can i make the SD card to be my Default storage?
SDcard is internal, SDcard-ext is the external card. Haven't seen anyway to default downloads to the external card.
there has to be a way to make the Micro SD card to be the default for downloads and what not. All my other phones have created subfolders under the MicroSD card.
I do not want to use my internal 8gb to save PDF files when i download them from the internet. I want to use my 32GB MicroSD card like it does on other phones...
This has been a NIGHTMARE. I just realized sdcard is internal and sdcard-ext is my actual SD Card. I just assumed sdcard was my flash memory card as this was the case with my Droid X. I changed ES File to the ext location as my default, and my browser's DL section to the ext location as well as Titanium backup. I can't figure out how to save my E-Mail attachments to the ext directory though and I have to continually move them manually, not to mention every app is using the sdcard directory (internal memory) and thinking it is my actual Micro SDHC card. This is a NIGHTMARE and I have read it is not a Motorola problem as new Samsung and HTC phones have the same problem, it is an Android problem. Why the heck would Google change the naming scheme of the SD Card when it worked fine before? Anyway if ANYONE has any solutions suggestions, I would really appreciate it. Thanks
I totally agree. There had to be a way to make all downloads, etc save to sd c
ard-ext.
It's probably going to take a custom Rom to fix.
I currently have a 32 gig card but want to buy a larger 64 gig card. Can I simply copy all contents of my SD card to PC and then paste them back to the new 64 gig card? Will all my apps and their databases installed on SD card still work? Or are apps tied down to the SD card or the device for security. Have 8.1 installed on my Ativ S.
Thank you!
tboy2000 said:
I currently have a 32 gig card but want to buy a larger 64 gig card. Can I simply copy all contents of my SD card to PC and then paste them back to the new 64 gig card? Will all my apps and their databases installed on SD card still work? Or are apps tied down to the SD card or the device for security. Have 8.1 installed on my Ativ S.
Thank you!
Click to expand...
Click to collapse
I Suggest 2 Ways .
I think both of them work for you .
1.Copy apps to phone storage and move them to new sd card
2.copy WPSystem in your old sd card to new one (maybe 1% this not work but not a bad try )
ngame said:
I Suggest 2 Ways .
I think both of them work for you .
1.Copy apps to phone storage and move them to new sd card
2.copy WPSystem in your old sd card to new one (maybe 1% this not work but not a bad try )
Click to expand...
Click to collapse
Ah but the amount of internal phone storage is less than the size of my current 32 gig sd card so I will not be able to move back to phone all my apps and their data.
tboy2000 said:
Ah but the amount of internal phone storage is less than the size of my current 32 gig sd card so I will not be able to move back to phone all my apps and their data.
Click to expand...
Click to collapse
so lets test copy wpsystem folder ?
Back from my hd2 days we used to clone the smaller card to the bigger card. Bigger card will then show in your case 32gb. Then use a partition manager to expand the size of the partition. Used to work with wp7.x not sure of wp8.
Wouldn't see why it wouldn't work since it doesn't need to read any info on the actual partition it just copies whole thing to computer then copies whole thing to new card. Then expand it to your cards size.
Back then if you just copied using file explorer it would give error on start up but wp7 on an hd2 is WAYYY different not sure how much wp8 checks sd cards like that.
@reeg420 probably has the right idea here. It *might* work to just copy the filesystem contents, but if you want to be really sure you should copy at a lower level. Note that this will wipe the new card completely! I make no promises of this working in the case of an encrypted (BitLocker'd) card. Here's one way you could do it, if you have access to a Linux/OS X system:
* Insert the first SD card and figure out what device it maps to (I'm going to assume /dev/sdb for this tutorial).
* If the SD mounted automatically, unmount (eject, or 'umount' command) it.
* In a terminal, figure out where you'll want to place the temp file (this step can be skipped if you can mount both cards at a time, but that's rare). It'll be the size of the first card (32GB). It could be something like /tmp/sdclone or ~/sdclone or /dev/sdc if you're doing a direct copy without a temp file.
* Use the dd command ('man dd' if you want to learn more about it). For example:
Code:
dd if=/dev/sdb of=/tmp/sdclone bs=16m
* Once the dd command finishes (assuming it finished without errors), pull out the first sd card and put in the second (assuming you didn't direct-copy).
* Again, unmount the sd card if it auto-mounts. Then dd the temp file back onto the sd card (just switch the paths of the 'of' and 'if' parameters).
* Once the copy finishes successfully (you may want to try re-mounting the card to make sure it worked!) you can delete the temp file.
Of course, this will just give you a 64GB microSD card with a single 32GB partition and 32GB of unusable space. At that point, you can extend the partition into the remaining space. There are various ways to do this - on Linux you might use the 'parted' command or one of its graphical front-ends (gparted/qtparted) - but the easiest is probably to put the card in a Windows machine (or reboot into Windows if you're dual-booting) and use the Disk Management console ('diskmgmt.msc', if you want to use Search or Run).
A card cloned in this way *should* work just fine in your phone, but I haven't tested this.
64 card files wont all play
Hi I have a new moto g, (running lollipop) I also put in a 64 sd card, while the music files seemed to play fine, video and other files the phone reads some of them not others, I put the same file internally and on the sd card and it reads the internal version of the file. I gather from this forum ( 64GB HD Card on Lollipop ROM - What format should I use?) I need format the sd card, I have no idea how to do that, any help would be appreciated.
Use Fat32, it´s the safest solution imho.
matt1mintz said:
What format should I use?) I need format the sd card, I have no idea how to do that, any help would be appreciated.
Click to expand...
Click to collapse
Only fat is supported out of the box for external SD.
Max file size for fat32 is 4GB-1byte. Should be not a problem unless you plan on putting e.g. large hd-movies on the card. That would require another filesystem and makes things complicated (root, custom kernel etc)
Since Windows' internal formatting tool is limited to 32GB you will need e.g.
http://www.easeus.com/partition-manager/. On linux use gparted.
What would be the best way for migrating contents of the current SD card to the new bigger one?
I would copy them using a computer.
I am concerned about file permissions.
For now as I have plenty internal storage, I am considering an option to tar the files from the old SD card, and than, after formatting the new SD card, untar eventing, respecting permissions.
I have installed busybox.
Another option would be to create dd image of the old SD card, Mount it, than format the new SD card, and copy everything from mounted image back to the card.
These two are only ways to preserve file permissions, aren't they?
The sdcards are formatted as fat32, right? No problem. Simply copy everything from one card to the other, as per the first advice.
Sent from my mobile device
In that case, you are right, thanks.
I have put small SD card into computer and rsync-ed is contents to the temporary folder. Than I have put bigger SD card and rsync-ed back.
Everything went ok.
Thanks.