Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

adb doesn't run on Ubuntu 64 - command not found

Update

After doing some more experiments, I have to reformulate my question completely as I was fooled by my terminal. It just didn't showed the error message when I issued sudo ./adb.

If I cd into the ANDOID_SDK/platform-tools directory and run ./adb, I get:

command not found: ./adb

Here the output ls -l adb in the same directory:

-rwxrwxr-x 1 myuser myuser 159620 2011-12-20 19:30 adb

Running which adb gives me:

./adb

The same happens for all other binary executable files in that directory like aapt, aidl, dexdump, etc.

I could just imagine that this has something to do with me trying to run it on a 64bit Ubuntu, but the ELF header or something similar not being recognised. However, the android tool in ANDOID_SDK/tools is running fine (besides failing to execute adb after downloading new packages).

Really strange...

Original question

I downloaded the latest Android SDK. If I try running adb as an ordinary user, I get "command not found". I must run it as "sudo ./adb" and it works. Why is that and how do I fix it? I'm running Ubuntu 64 11.10.

I used the SDK on older Ubuntu versions and there, I could run it as ordinary user without problems. Any ideas?

like image 861
Sebi Avatar asked Dec 20 '11 19:12

Sebi


1 Answers

I found the solution. I investigated again if I really got ia32-libs installed. On a first glance, it looked fine in aptitude. However, on a second glance I noticed that the ia32-libs package was installed, but not all dependencies. I was not able to resolve that with aptitude, but instead I had to remove ia32-libs with KDE package manager and install it again. Now, all missing 88 dependencies were installed, too. adb is now working fine.

I'm not 100% sure why aptitude failed here, but I suspect that it is suffering from this bug on my installation, too: https://bugs.launchpad.net/ubuntu/+source/aptitude/+bug/831768 I also have duplicate entries in aptitude for all entries.

like image 54
Sebi Avatar answered Sep 23 '22 05:09

Sebi