2

I am trying to create an SD card on emulator, but am getting following error:

Failed to create SD card

Can anyone help me with this?

McGarnagle
  • 101,349
  • 31
  • 229
  • 260
Taruni
  • 1,671
  • 4
  • 22
  • 43

1 Answers1

2

I had faced the same issue on my Linux machine. My solution:

Go to the Tools folder in the Android SDK directory. Make sure you have execute permissions on all files in the location. I had to change permissions to 777 (Read+write+execute) for all files and the issue was resolved.

For a detailed explanation: Wordpress link

UPDATE: A lot of people are facing issues on their 64-bit Windows machines. Please try the StackOverflow threads here and here. Hope these help

Community
  • 1
  • 1
Anurag
  • 348
  • 2
  • 15
  • In my case it was a different issue altogether. My 64-bit Linux was missing the 32-bit glibc. Refer this helpful post on [lib/ld-linux.so.2: bad ELF interpreter: No such file or directory](http://forums.fedoraforum.org/showthread.php?t=268429#post1504144) – asgs Aug 22 '12 at 00:28