Michielodc
Michielodc

Reputation: 753

adb devices command shows nothing

At the moment I'm busy with the Android SDK. I got it working, but when I entered $sudo adb shell. It gave sudo: adb: command not found. For this problem I checked this link: adb devices command not working But if I enter $sudo adb devices now. Noting happens.

Not even *daemon not running. starting it now op port 5037 * and the rest. But it looks like this:

    michiel@ubuntu: ~$ sudo adb devices
    michiel@ubuntu: ~$

So I can enter the next command. Someone knows how to fix that? It's the same with $sudo adb shell. Nothings comes up.

When I enter adb devices without the sudo. I get the error:

-bash: /usr/local/sbin/adb: No such file or directory. 

But it's there!

echo $PATH = /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/home/michiel/jdk1.6.0_29/bin:home/michiel/android-sdk-linux/tools:/home/michiel/android-sdk-linux/platform-tools

Edit

When I start Eclipse now, I get the next error: Failed to get the adb version: Cannot run program"/home/michiel/android-sdk-linux/platform-tools/adb":java.io.IOException:error=2, No such file or directory.

SOLVED

Last weekend I installed a clean install of Ubuntu. I downloaded the ia32.lib and openjdk instead of java jdk and install is manually. After some struggling I managed to connect the device and now I can see it. Thx for the help :)

Upvotes: 3

Views: 22701

Answers (5)

Nithin Raja
Nithin Raja

Reputation: 1242

Check adb is available in your android sdk --> platform-tools. If it available Follow these steps:

Set android vars

Initially go to your home and press Ctrl + H it will show you hidden files now look for .bashrc file, open it with any text editor then place the lines below at the end of file:

export ANDROID_HOME=/myPathSdk/android-sdk-linux export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools

Now Reboot the system

It Works!

Upvotes: -1

Peyman
Peyman

Reputation: 367

I also had this problem two days ago and I searched and searched so I found that my ubuntu is 64-bit and adb is not match to ubuntu 64-bit so I used the below command in terminal:

sudo apt-get update
sudo apt-get install ia32-libs

and my problem was solved don't forget, you should export your java-version-sdk.

Upvotes: 13

Dinesh Prajapati
Dinesh Prajapati

Reputation: 9510

I think you are running on the linux platform so for that running binary will be followed by .

try with sudo .adb devices
    or try with sudo .adb shell

Upvotes: 0

c05mic
c05mic

Reputation: 558

Try adding the following at the end of your .bashrc file (can found in your home directory):

export PATH=:/home/michiel/android-sdk-linux/platform-tools:$PATH 

Now use the adb command without sudo. This solved the problem for me.

HTH!

Upvotes: 4

Vishal Pawar
Vishal Pawar

Reputation: 4340

try to kill & start the adb server cmd

adb kill-server

adb start-server

Upvotes: 1

Related Questions