0

Why I can't start android emulator? There is error message like this,

Starting emulator for AVD 'Sen'
Failed to start emulator: Cannot run program "/opt/android-sdk-linux/tools/emulator": error=13, Permission denied

error message of android emulator enter image description here

muru
  • 197,895
  • 55
  • 485
  • 740

1 Answers1

1

You are running a program from /opt folder. You need to run it with sudo

or you could move your sdk to your home folder where you have read/write access.

Third way is to set chmod -R 775 /opt/android-sdk-linux . I suggest the second method.

Suraj Rao
  • 627