[Q] saving to micro SD card - Eee Pad Transformer Q&A, Help & Troubleshooting

I have been having some issues when saving music to my micro SD. I am running the latest version of katkiss(and love it). I have the files on my internal SD card, then try to move them to my external SD card using root browser, of file manager HD. It looks as though the files move, but when I unmount the card, and remount, or just reboot the tablet, the files are no longer there. Maybe I am doing something wrong, just looking for some good advice.
Thanks everyone for making this tf101 awesome again!!

I would try manually from adb or console to see if you get any errors which file managers can silently suppress.
I don't have the device with me right now so I can't give you the exact path to use, but something like:
cp -a /sdcard/Music/file-or-directory* /mnt/storage/2
the paths are wrong of course, I really can't remember where they're mounted. I'll update the post when I get home unless someone can give the proper paths before then. Using cp will tell you if there's errors.
I would also try to copy files to the card on a computer, to see if you can replicate the problem there. It could just be a dying card or a messed up filesystem on it.

Lethe6 said:
I would try manually from adb or console to see if you get any errors which file managers can silently suppress.
I don't have the device with me right now so I can't give you the exact path to use, but something like:
cp -a /sdcard/Music/file-or-directory* /mnt/storage/2
the paths are wrong of course, I really can't remember where they're mounted. I'll update the post when I get home unless someone can give the proper paths before then. Using cp will tell you if there's errors.
I would also try to copy files to the card on a computer, to see if you can replicate the problem there. It could just be a dying card or a messed up filesystem on it.
Click to expand...
Click to collapse
Thanks for the reply. I may be doing something wrong i don't know. The card is brand new, and i did the FAT32 long format. The same thing happens to me when i use a USB adapter in the main connector and try to move music from my tablet to a USB drive. It looks like it moves, but as soon as I unmount, and re-mount, no files are there. I am formatting my SD and USB drives on a windows 8 laptop. I have read where some people have luck formatting NTFS, but my laptop won't even let me format my USB drive that way.
I appreciate your effort. I am sure we can get this resolved some how. Just gotta keep messin' with it.
troyvs

Is it the dock sdcard or the tablet's?
The exact command to test a copy would be (for the tablet's external sdcard):
cp -av /storage/sdcard0/file.name /storage/sdcard1/
I'm running 021 and this worked for me. The command should return something like:
/storage/sdcard0/file.name -> /storage/sdcard1/file.name
and get you back to a shell if it works. Otherwise paste the message it gives you.
If the devices work elsewhere and you're sure it's the tablet, try wiping cache and dalvik... I've seen it cause weirder issues. You could also try to do a full backup in recovery and then do a full wipe, and reflash katkiss. If it works you know it's something with the old rom, and if it doesn't you can restore the backup.
troyvs said:
Thanks for the reply. I may be doing something wrong i don't know. The card is brand new, and i did the FAT32 long format. The same thing happens to me when i use a USB adapter in the main connector and try to move music from my tablet to a USB drive. It looks like it moves, but as soon as I unmount, and re-mount, no files are there. I am formatting my SD and USB drives on a windows 8 laptop. I have read where some people have luck formatting NTFS, but my laptop won't even let me format my USB drive that way.
I appreciate your effort. I am sure we can get this resolved some how. Just gotta keep messin' with it.
troyvs
Click to expand...
Click to collapse

I have moved files from the internal SD (photographs actually as there was no option to save them anywhere else only the internal SD) to the micro SD card using the X-plore app and the ES file manager app with no problems. I did however learn that both sd cards e.g. the internal and external are just called sd card and the internal sd card is shown under Device and under Storage so it is possible to cut and paste from the Internal sd card back into the Internal sd card.
I am assuming you are referring to the sd card on the tablet and not the sd card in the dock.

Related

SD Card not writeable

Hi,
for a few days im not able to write anything to my sdcard (SanDisk 8GB). Im sure its not permission related (read only mode..). My computer (linux) can read flawlessly, just like my phone (Moto Milestone/TheFroyoMod 2.4c). But when i copy files to the sdcard and plug it back in, the new written data is lost. Same for my phone. I can take photos but the files cant be stored on the sdcard. I already tried to format the sdcard with GParted but it wont let me do ANY changes. Even if i format it to another FS, when i plug it back in, its still FAT 32 with all the data still on it. Windows wont let me format it at all.
Does anyone have a similar issue and manged to solve it?
ty!
Is it an old card, been used a lot? It may not be the case, but it sounds like nand that has run out of write cycles.
well ive been using it for 6 months now. Just regular usage.
It sounds like you've tried everything available to you. I'd recommend copying the contents of the SD card onto your PC for safe keeping and try to source another card.

[Q] internal sd card for samsung captivate shows as write protected

I will give some background to begin with. I had installed the Kies mini update to the 2.2 software on my Captivate. I then rooted with super one click. I have the drivers for the Captivate installed in Windows XP and I have USB debugging enabled. It recognizes the drive and will show me the contents on the computer, but it doesn't allow me to copy from the computer to the drive. I know I can use dropbox for some things, but for other things like installing a custom rom, I would like to be able to copy to the drive. It does show as mounted and mass storage is enabled on the phone. Any ideas?
If you are rooted just go into cwr and mount sd card there. if not i have no idea as i haven't kept a phone stock since a week after i got my old Moto Droid, as soon as i found out it was possible.
Well apparently the version of Clockwork Mod Recovery that I have doesn't give the option to mount the SD card. I have 2.5.1.2. I did find a way using SGS tools to download a custom rom to the root of the SD card. I was going to reinstall Debian Linux at some point on my computer so I may have better luck with using that to write to the SD card then I am having with XP.
Yeah
Make sure that the SD card isn't locked. Also, back up everything on it to your computer and do a complete format as well. And if you're wanting to write ROMs to your SD (or CWM, etc.) in Linux, you're going to have to use dd in the terminal, and most like will be writing to "sdb".
Here's a simple walkthrough just in case you don't know how to use dd:
Become root by typing "su" and following it with your password. If you don't have a root password, type in "sudo passwd" and set it.
Next you have to unmount your microSD. To see what you have mounted type in "mount". Your SD card will most likely be called "/dev/sdb" or "/media/sdb" or something along those lines (not sdb1, that is the partition on the card). Once you know what your SD is called and where it's located, type in "umount /dev/sdb", placing '/dev/sdb' with the actual location and name of your SD card.
Now we get to use dd. Type in: dd if=<insert location of IMG here without the tags I included> of=<location of your sd without the tags I included> bs=1M
Be patient, because it usually takes a while, depending on what you're writing. Good luck mate.
I was looking for an answer to this myself. Me and my girlfriend both have the same phone, galaxy S. We both put andromeda rom on it and are now going to switch to FireFly (I did, she's trying to).
Well, mounting her USB storage ends up with the internal SD card being recognized as a CD ROM and the external as a usb storage device.
Anything we try to do to her internal says there's write protection and to disable it or use something else every time we do anything.
Only even trying this because we're getting some weird "Error at line 17: symlink with SU..." blah blah....
Completely stuck here. Doesn't make any fracking sense.
same to me. what should i do? I'm trying to install Andromeda. But I can't even copy ROM file to internal SD card. HELP ME ASAP!

Formatted my SD card...and now it won't work

My SD was acting a fool (after deleting many ROMs, it still said I had 73MB free). Nothing I did would change it so I decided to format the card. I used Disk Utility (on Mac) and formatted for FAT32. After I did that, my phone said it was in a format it couldn't recognize, so I formatted it from the phone itself. Now, when I enter recovery and attempt to install zip from sdcard, then choose zip from sdcard, it says "E:Can't mount /sdcard". I don't really know what to do, as I formatted it from my phone. I figured that was sure fire but I guess not so much. I tried to find what format I need the SD card in to work properly but I couldn't find anything.
Can someone help me out?
Fat32 is correct for the phone. Do you have a usb reader for the sdhc microsdcard or one of those sdcards that let the microsd card fit in to read it from the pc?
Sent from my LG-P999 using xda premium
Reboot in recovery, if it says it can't mount it... pop out the sd from your phone and pop it right back in and see if it works. No need to mess with mount points for it either.
Also, did you check if your lost.dir folder is taking up space? Sometimes that thing can get big.
Could have been a bad flash, try to flash it again. I know I had a problem when I bought a new sd card. You can also try to flash it from a different phone. Otherwise, if you have access to a pc, I can tell you how to format it from the command line, which is, in my opinion, better to do if you're having a problem with the quick format that the phone does.
ericalanMICHAEL said:
My SD was acting a fool (after deleting many ROMs, it still said I had 73MB free). Nothing I did would change it so I decided to format the card. I used Disk Utility (on Mac) and formatted for FAT32. After I did that, my phone said it was in a format it couldn't recognize, so I formatted it from the phone itself. Now, when I enter recovery and attempt to install zip from sdcard, then choose zip from sdcard, it says "E:Can't mount /sdcard". I don't really know what to do, as I formatted it from my phone. I figured that was sure fire but I guess not so much. I tried to find what format I need the SD card in to work properly but I couldn't find anything.
Can someone help me out?
Click to expand...
Click to collapse
Sounds like what i did one day when i wanted to wipe everything so i did including formatting my SD card through recovery. so it left me with nothing on my phone including a bootable rom! lol. if this is the case with you. Here is what i had to do. Download a new rom to my PC then plug my phone into my PC via USB/ Boot into recovery/ Mount storage/ Mount SD card/ Copy the Rom to SD card then Flash the Rom. Not too sure if this helps, I hope it does, again it sounds like the same problem i had.
Sometimes SD cards break...for some reason they will just stop working, probably due to manufacturing techniques. My old 256mb card went bad, I just tossed it yesterday as a matter of fact. it had no name brand. I still have a 4gb pny that works perfectly and a SanDisk 32gb which also works great. If you do have to get a new SD card, I would recommend getting the highest class you can afford highest out the right now I believe is C10. That will increase your transfer speeds....both of my current cards are class4 and it can take a little bit of time to transfer gigs of data between the phone and computer. If you have any other device that can accept the "card" put it in there and check if it can send and receive data/ format to proper disk size, if not then your card is broken.
Once you go class 10 you don't look back lol
Loving my Lexar 32gb class 10 microsd.
Sent from my LG-P999 using xda premium

Any idea how to format a corrupted sdcard?

I got a class 10 micro sdcard yesterday but when I tried to put music on it the write was like 2M/s. The computer froze in the process so I took the sdcard out before the process was finished. After I restarted my computer the computer wouldn't recognize the card anymore (no show in Computer). It wouldn't be recognized on my phone neither. It did show up on my friend's computer but if I clicked on the disk icon, it asked me to insert a card.....so I guess it might be corrupted because I got it out before the transfer was done.
So is there anyway to format the sdcard (micro sdcard)? I know there are many software that can format the sdcard but they won't work since the computer won't even detect the sdcard....
Wish I knew this as well. I have a corrupted 16GB Micro as well. Trying to format using SDFormatter tells me that it's in read-only mode or some nonsense like that.
Try this first:
http://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/
Even though windows won't say anything when it's inserted, doesn't mean it wasn't detected, just means windows couldn't mount it. Insert the sdcard and theh download and run the program, selecting the proper drive to wipe.
If that doesn't work u both could try linux. Download any live distro, I recommend slax. Burn it to a CD and boot ur computer from it with the micro sdcard inserted via adapter.
Then use this command with variation to ur specific hardware setup
dd if=/dev/zero of=/dev/???# bs=1M
icenight89 said:
Try this first:
http://hddguru.com/software/HDD-LLF-Low-Level-Format-Tool/
Click to expand...
Click to collapse
there is an official tool by the SD Association https://www.sdcard.org/downloads/formatter_3/
You could try right clicking my comupter>manage>storage and look for your card and format it from there may work may not.
kishke said:
You could try right clicking my comupter>manage>storage and look for your card and format it from there may work may not.
Click to expand...
Click to collapse
wont work, need a low level format
zefie said:
there is an official tool by the SD Association https://www.sdcard.org/downloads/formatter_3/
Click to expand...
Click to collapse
for this specific task, the fs is corrupt, I think my methods would be better
icenight89 said:
for this specific task, the fs is corrupt, I think my methods would be better
Click to expand...
Click to collapse
SD Formatter has revived many of my cards, it will also re-partition them and format it to a single FAT32 (or FAT if its a small card) partition. All you need is the PC to see the device (such as the card reader) in device manager. Also, if you have a supported card reader (90% don't though) it can do low-level functions such as Flash NAND (of the SD Card) erase.
If it doesn't show up, I would agree to try the /dev/zero method under linux, followed by a SD Formatter wipe once the card is back to appearing in device manager.

[Q] Damaged SD card / won't mount - fix?

So in short my Droid Charge's SD card is screwed up.
I keep getting the message Damaged SD Card message in my notifications and I click it every time to format but then it doesnt do anything. When I try to view my photo gallery it says the sd card is blank or that there is no sd card. It wont let me use the camera because theres no sd card.
I'm rooted running Tweaked 3.0 with the latest FP5 updates after unrooting back to stock in order to get them. Tried to Odin back to stock a few times and then reflashing Tweaked a few times and still the same thing. Did factory/data reset, cache wipe, dalvik wipe a thousand times as well.
I am able to mount the sd card briefly in ClockworkMod Recovery, to view the files on the sd card but then about a minute or less later the sd card seems to unmount itself and becomes unrecognizable. Same for when I connect the phone via USB to my Windows 7 PC. If I pull out the physical sd card from the device, put it back in, hit connect to storage...the PC will recognize it for about a minute basically teasing me, letting me transfer a couple small files...and then unmounts itself and stops being read. Because of this I cant seem to partition the sd card in Windows 7 nor can I get it to complete and Check Disk.
I even bit the bullet while trying to format the sd card in CWM, and then while connect to the PC and I cant even get the card to format...
Obviously I'd prefer to some how save all the files on there before having to format if possible.
Tried searching around the forums but nothing seems to be similar to my problem. The ONLY thing I can come up with for the cause was that I mistakenly flashed the charge.PIT file while flashing Tweaked 3 in Odin. Not sure if thats the cause...
Any help and suggestions would be great. Thanks!!
It sounds to me like it's actually dead, or on its way. Try plugging it into your computer. Make note of the file name (eg F:\) Go to command prompt and type this:
Code:
chkdsk (drive letter with colon and backslash) /f /p
If that doesn't work, your last shot is probably this:
Code:
chkdsk (drive letter with colon and backslash) /r
Sent from my SCH-I510 using xda premium
Can you mount your SD card directly to your PC (i.e., pull it from your phone and use a card reader)? I've had troubles with SD cards in the past and by using a non-phone card reader have been able to save what was on the card or resurrect it back to the point of usability in the phone.
jusliloleme said:
Can you mount your SD card directly to your PC (i.e., pull it from your phone and use a card reader)? I've had troubles with SD cards in the past and by using a non-phone card reader have been able to save what was on the card or resurrect it back to the point of usability in the phone.
Click to expand...
Click to collapse
Yeah, I forgot to say be sure to do this with an SD or USB adapter rather than through your phone.
Sent from my SCH-I510 using xda premium
This actually sounds a lot like what can happen to SD cards on some HTC devices if the S-OFF goes bad. The two ways to fix it were to put it in a card reader and reformat it in Windows as FAT32, or there is a way to repartition and reformat it on the phone, but it requires you to know the pull /dev path to the SD card, and I don't know it for this phone.
Still no dice...
Ya I tried using an SD adapter that held the micro SD card, put that directly into my laptop's SD card slot and still had the same experience...it briefly reads and mounts...where i have enough time to dig few a couple folders on there and drag a couple small text docs off...then stops working.
I tried using those command prompts in CMD (chkdsk D:\ /f, chkdsk D:\ /p, and chkdsk D:\ /r) but none of them did the trick. Also the "/p" seems to be an invalid command for chkdsk? I cant seem to get it to partition in any utilities either.
Still cant format it using the adapter either in CMD or the regular Windows 7 interface.
There may also be an issue stemming from the possibility that I think its just acting as read/only. Is there a way to make it read/write? The option doesnt seem to show when i right-click on the briefly mounted sd card for its properties.
My last attempt last night was using Sandisk RescuePRO Deluxe. I started it around midnight and by 7am it was only at roughly 6.5% complete for some reason...arg.
Thoughts?
Did you try the disk management in Windows? Or diskpart?
Sent from my SCH-I510 using Tapatalk 2
I did try disk management in windows and the sd drive label wouldnt stay showing long enough for me to get that to work. I dont understand why its able to mount and then shortly after just unmount itself.
Havent tried diskpart, is that a command in CMD?
JihadSquad said:
Did you try the disk management in Windows? Or diskpart?
Sent from my SCH-I510 using Tapatalk 2
Click to expand...
Click to collapse
ultimatdan said:
I did try disk management in windows and the sd drive label wouldnt stay showing long enough for me to get that to work. I dont understand why its able to mount and then shortly after just unmount itself.
Havent tried diskpart, is that a command in CMD?
Click to expand...
Click to collapse
Yeah its a terminal level partitioning tool.
Do I just type in "diskpart" to cmd?
JihadSquad said:
Yeah its a terminal level partitioning tool.
Click to expand...
Click to collapse
ultimatdan said:
Do I just type in "diskpart" to cmd?
Click to expand...
Click to collapse
IIRC you will want to run cmd as administrator (by right clicking on its icon in the start menu). You should also look up some sort of guide if you haven't used it before.
Ughhhh
Still not working Im getting error messages not letting me format. It will select the disk though but then when i try to go further i get "diskpart has encountered an error"
JihadSquad said:
IIRC you will want to run cmd as administrator (by right clicking on its icon in the start menu). You should also look up some sort of guide if you haven't used it before.
Click to expand...
Click to collapse
Ever tried HP USB Disk Storage Format Tool?? Its supposed to work but dont have a card reader to find out ..>(
http://www.softpedia.com/get/System/Hard-Disk-Utils/HP-USB-Disk-Storage-Format-Tool.shtml
I had the same problem with my S3 and tried to recover data from card but nothing worked. Luckily I had most of it backed up. At the end had to get a new card
Sent from my SCH-I510 using xda app-developers app
Same issue happened with my ADATA card. I was able to recover the files by wiping the SD Card in TWRP first. Then recovering the boot partions/files using TestDisk. It worked for a while but ultimately, like Lehocki said, I had to get a new card. I was able to return it and get a replacement.
Weird, I had just had the same problem and am also using Tweaked 3.0. Interesting. I also had luck recovering many files using TestDisk,,,however several files were corrupted.
Same problem.
ultimatdan said:
So in short my Droid Charge's SD card is screwed up.
I keep getting the message Damaged SD Card message in my notifications and I click it every time to format but then it doesnt do anything. When I try to view my photo gallery it says the sd card is blank or that there is no sd card. It wont let me use the camera because theres no sd card.
I'm rooted running Tweaked 3.0 with the latest FP5 updates after unrooting back to stock in order to get them. Tried to Odin back to stock a few times and then reflashing Tweaked a few times and still the same thing. Did factory/data reset, cache wipe, dalvik wipe a thousand times as well.
I am able to mount the sd card briefly in ClockworkMod Recovery, to view the files on the sd card but then about a minute or less later the sd card seems to unmount itself and becomes unrecognizable. Same for when I connect the phone via USB to my Windows 7 PC. If I pull out the physical sd card from the device, put it back in, hit connect to storage...the PC will recognize it for about a minute basically teasing me, letting me transfer a couple small files...and then unmounts itself and stops being read. Because of this I cant seem to partition the sd card in Windows 7 nor can I get it to complete and Check Disk.
I even bit the bullet while trying to format the sd card in CWM, and then while connect to the PC and I cant even get the card to format...
Obviously I'd prefer to some how save all the files on there before having to format if possible.
Tried searching around the forums but nothing seems to be similar to my problem. The ONLY thing I can come up with for the cause was that I mistakenly flashed the charge.PIT file while flashing Tweaked 3 in Odin. Not sure if thats the cause...
Any help and suggestions would be great. Thanks!!
Click to expand...
Click to collapse
Ref : Thanks!

Categories

Resources