Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error message when setting up ADT in Linux

Tags:

linux

adb

I installed Ubuntu 11.10, installed GNOME 3 (replaced Unity), installed Eclipse from the Ubuntu Software Center, installed the android sdk and ADT.

Now when I start eclipse I get a message saying:

Failed to get ADB version : Cannot run program 
/home/ayush/android-sdk/platform-tools/adb":java.io.IOException:error=2,
No such file or directory

What is causing this error and how do I fix it?

like image 792
Ayush Avatar asked Mar 05 '12 11:03

Ayush


2 Answers

The command to install IA32 libraries on Ubuntu is:

apt-get install ia32-libs
like image 55
ChuanRocks Avatar answered Sep 29 '22 08:09

ChuanRocks


sudo dpkg --add-architecture i386
sudo apt-get update
apt-get install ia32-libs
like image 23
Peter Avatar answered Sep 29 '22 07:09

Peter