Why can not I run the Android emulator? java.io.IOException: error = 13, Permission denied

I installed everything as the android site told me, and all I get after creating my avd is:

Failed to start emulator: Cannot run program "/home/hevel/eclipse/android-sdk-linux_86//tools/emulator": java.io.IOException: error=13, Permission denied

Does anyone have any ideas? I use fedora15_x86_64if that helps.

+5
source share
4 answers

try running these commands in the terminal: go to your Android tools folder (for me it's Android-SDK / tools /), then type:

chmod +x emulator
chmod +x ddms
+5
source

Make sure that you provide execute permissions for the emulator for the user running eclipse.

0
source

go to directory

/home/hevel/eclipse/android-sdk-linux_86//tools/emulator

to set permissions

chmod +777 emulator
0
source

I fixed this by adding execute rights to the file "~ / sdk / tools"

Open a terminal and

chmod +x system file path ~/tools/emulator
0
source

All Articles