Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am developing under Android 1.6 (Android SDK 2.1). I create a avd by using avd manager in Eclipse. When I launch this avd, I found that the /sdcard directory's permisson is "d---------". So I can't push file to the sdcard.

Does anyone know how to solve this problem?

share|improve this question

7 Answers

Once you started the Emulator from one shell, login to another shell & type

adb shell

You should see # prompt displayed, this is your device(emulator) shell. Now , type following command at adb shell.

mount -o remount rw /sdcard

This will now remount /sdcard with rw(read-write) permission & now you can push your files into /sdcard by using following command from your host shell.

adb push filename.mp3 /sdcard, where filename.mp3 could be any file that you want to push into Android Emulator.

Hope this helps :)

share|improve this answer
Even if remount does not work, see if the link is proper. That is /sdcard -> /mnt/sdcard. If that is properly linked, check the permissions of the directory /mnt/sdcard. If necessary permissions are not there, issue the chmod command to do it. For example # chmod 0777 /mnt/sdcard should work. PS : You don't need the execution permission normally. – Subin Sebastian Nov 28 '12 at 11:07

Ensure two things in the AVD manager utility for the emulator:

  1. SD Card size is mentioned e.g. 512.

  2. From the Hardware tag, press New and select "SD Card Support" from the drop down menu.

Now, start the emulator. SD Card shall now support writing as well.

share|improve this answer
Where is hardware tag? i dont see that in Edit Android Virtual device (AVD) – knocker Apr 26 at 5:12
I see hardware tag for avds which created on command line only. – knocker Apr 26 at 5:44

Maybe it sounds stupid but it worked for me when I had the same problem: delete the created avd and create one again through AVD Manager with a sd card of, for example, 512MB.

Check that both have the correct permissions and if not, try to change them with chmod.

And if everything still fails, repeat the process but creating both avd and sd card manually via terminal:

android create avd -n my_avd -t 7
mksdcard -l e 512M mysdcard.img
emulator -avd my_avd -sdcard mysdcard.img

Hope that helps!

share|improve this answer

Make sure that you had given a value which is greater than zero for SD Card size in the Create AVD Window for that particular emulator.

share|improve this answer

mount -o remount, rw /sdcard

this is the correct way to remount your sdcard using your emulator.

share|improve this answer

make sure that you have the correct permissions.

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> 
share|improve this answer

Windows uses backward slashes, linux uses forward slashes.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.