Error message when configuring ADT on Linux

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

Now, when I start eclipse, I get a message with the message:

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 causes this error and how to fix it?

+5
source share
6 answers

Command to install IA32 libraries on Ubuntu:

apt-get install ia32-libs
+9
source
sudo dpkg --add-architecture i386
sudo apt-get update
apt-get install ia32-libs
+4
source

, , ubuntu. 64 , linux, IA32. Google.

ADB ubuntu.

+1

Fedora 17, , :

[2013-08-29 21:44:08 - adb] Unexpected exception 'Cannot run program 
"/home/el/adt-bundle-linux-x86_64-20130729/sdk/platform-tools/adb": 
error=2, No such file or directory' while attempting to get adb version from 
'/home/el/adt-bundle-linux-x86_64-20130729/sdk/platform-tools/adb'

, , Fedora 17/18 (login as root)

yum install redhat-lsb.i686

IDE, .

0

, , Ubuntu 12.04 LTS.

:

1) "adb" "fastboot", PPA.

sudo add-apt-repository ppa:nilarimogard/webupd8
sudo apt-get update
sudo apt-get install android-tools-adb android-tools-fastboot

2) "adb" "fastboot", Android SDK, , :

cp /usr/bin/adb <path-to-your-adt-sdk-package>/sdk/platform-tools/adb
cp /usr/bin/fastboot <path-to-your-adt-sdk-package>/sdk/platform-tools/fastboot

3) ( ) eclipse.

:

http://www.webupd8.org/2012/08/install-adb-and-fastboot-android-tools.html

12.10, 11.10 11.04.

0

ia32-libs, . , :

sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5

0

All Articles