Reputation: 364
I am trying to make my Android AVD run with Eclipse on Ubuntu 12.10. I created the AVD in eclipse, and now it's not running. This is the output error I receive when I run the AVD:
Starting emulator for AVD 'My_android-16' - Failed to start emulator: Cannot run program "/usrdata/Dev/android-sdk-linux//tools/emulator": error=2, No such file or directory
I'm using Ubuntu 12.10, latest Eclipse installed.
What I've done:
/tools/emulator chomod 777
permissions.cp /usrdata/Dev/android-sdk-linux/tools/emulator /usrdata/Dev/android-sdk-linux
Upvotes: 0
Views: 4042
Reputation: 1117
You don't have to install all the ia32 package. You can just use:
sudo apt-get install lib32ncurses5 lib32stdc++6
Also, I needed to make a soft link for LibGL.so.1 as mentioned here.
ln -s /usr/lib/libGL.so.1 ~/android-sdk-linux_x86/tools/lib/libGL.so
Upvotes: 4
Reputation: 1849
Run the following command on terminal:
apt-get install ia32-libs
Ref:http://developer.android.com/sdk/installing/index.html#troubleshooting
Upvotes: 3