Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When I run my android app from eclipse, I get this error.

Unexpected exception 'Cannot run program "/home/antz/Development/adt-bundle-linux/sdk/platform-tools/adb": error=2 No such file or directory' while attempting to get adb version from /home/antz/Development/adt-bundle-linux/sdk/platform-tools/adb

COPY PASTE FROM Eclipse Error

[2012-11-26 13:43:08 - adb] Unexpected exception 'Cannot run program "/home/antz/Development/adt-bundle-linux/sdk/platform-tools/adb": error=2, No such file or directory' while attempting to get adb version from '/home/antz/Development/adt-bundle-linux/sdk/platform-tools/adb'

However my adb is exactly in the location where it says it's not.

What is wrong and how do I fix this?

I cd into the directory where adb is (/home/antz/Development/adt-bundle-linux/sdk/platform-tools/) and I typed in adb and it says

antz@antz-90X3A:~/Development/adt-bundle-linux/sdk/platform-tools$ ls  
aapt  aidl  dexdump  fastboot  llvm-rs-cc  renderscript  
adb   api   dx       lib       NOTICE.txt  source.properties  
antz@antz-90X3A:~/Development/adt-bundle-linux/sdk/platform-tools$ adb  
bash: /home/antz/Development/adt-bundle-linux/sdk/platform-tools/adb: No such file or directory

adb is green which means its an executable, correct?

for example, dx is also green and when I typed in dx into the command prompt, it works... whats wrong with adb?

share|improve this question
Are you sure it is platform-toolds and not platform-tools? – Raghav Sood Nov 26 '12 at 18:48
/home/antz/Development/adt-bundle-linux/sdk/platform-toolds/adb THERE is an unneeded "d" in there! – forgivegod Nov 26 '12 at 18:48
sorry thats a typo by me on this post – ealeon Nov 26 '12 at 18:51
have you checked the permissions of the file/folder? You are working on linux, make sure your user can actually access that folder and run adb – WarrenFaith Nov 26 '12 at 18:56
I am kinda new at linux. How can i give eclipse to give permission to use adb on certain folders. Im know it has to do with chmod and stuff like that but how do i specify eclipse to have that permission? – ealeon Nov 26 '12 at 19:01

5 Answers

up vote 32 down vote accepted

On Linux you need to install IA32 library as well.

Try this: apt-get install ia32-libs

share|improve this answer
thanks this made it work. why didnt they include this step into the tutorial? – ealeon Nov 26 '12 at 19:17
2  
Google did provide the information. See developer.android.com/sdk/installing/index.html Click on Information for other platforms and then troubleshooting ubuntu. – Robin Chander Nov 26 '12 at 19:22
yeah i was following that website. but i didnt go into troubleshooting ubuntu. anyways thanks! – ealeon Nov 26 '12 at 19:37
2  
@RobinChander, funny that the Linux 64-bit ADT bundle comes with a 32 Bit adb under adt-bundle-linux/sdk/platform-tools/adb ... This is also a problem under other distributions, e.g. Fedora 17. – maxschlepzig Dec 7 '12 at 9:57
2  
I cannot install IA32 libs! Why? – afterimagedesign Dec 24 '12 at 18:01
show 2 more comments

You can no longer install ia32-libs, so you must the individual 32 bit libraries needed by adb

sudo apt-get install libc6-i386 lib32stdc++6 lib32gcc1 lib32ncurses5
share|improve this answer

You have to install the 32 bit glibc:

in Fedore 64 bit machine

# yum install glibc.i686

This removes the misleading 'no such file or directory' message when trying to execute a 32 bit binary. With that the 64 bit Fedora system is capable of executing 64 bit binaries.

This also removes the misleading 'not a dynamic executable' message of ldd when calling ldd on a 32 bit dynamic executable.

Now you have to install missing 32 bit libraries the binaries under adt-bundle-linux/sdk/platform-tools are linked against:

# yum install zlib.i686 libstdc++.i686 ncurses-libs.i686 libgcc.i686

Thats it.

share|improve this answer

On Fedora 18:

sudo yum install redhat-lsb.i686
share|improve this answer

Install these libraries in linux apt-get install ia32-libs

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.