ADB Not Responding - Wait More or Kill adb or Restart (Ubuntu 13) 64-bit

38,355

Solution 1

This worked for me (Ubuntu 14.04):

sudo apt-get install lib32z1 lib32z1-dev lib32stdc++6

Solution 2

Close Android Studio Kill all processess using 5037 port

sudo lsof -i |grep 5037

sudo kill PID_NUMBER

Run adb devices from console

adb devices

Solution 3

I did following

chmod u+x /path/to/adb

and restarted android studio

Solution 4

I got the same error. After starting a virtual device I tried to run the app I'm creating, again the error appeared but with a tip added: Install the SDK Platform-tools. Opened the SDK Manager and realize that the "Android SDK Platform-tools" Rev. 19.0.2 was not installed. Installed it and ADB started to work without errors.

(I am running Android Studio 6.0 in Ubuntu 14.04 and don't remember removing the Platform-tools)

Share:
38,355
Eenvincible
Author by

Eenvincible

Android & iOS Development with: Kotlin Swift Recently switched to Jetpack Compose & SwiftUI because it is awesome! Currently working on Handshake Jobs & Careers app.

Updated on June 29, 2020

Comments

  • Eenvincible
    Eenvincible almost 4 years

    I did serious searching both on Google and SO before asking this question - mainly because none of the suggestions out there didn't fix my problem!

    After unsuccessfully attempting to make my new Intellij and Android SDK to work on my newly installed Ubuntu 13.10, I am coming to you for help. I know there are thousands of suggestions out there already but none of them worked for me.

    Here is what I have tried:

    • adb kill-server
    • adb start-server
    • adb devices

    That last command listed my device - and that meant that it was able to detect it without any issues.

    • I have added all the necessary rules like 51-android.rules and those should be fine.
    • Started and restarted the IDE several times without any success.
    • I have installed libraries to fix any 64-bit issues
    • I even deleted the adb key in the .android folder since it gets generated automatically each time anyway.
    • I have no other older versions of IntelliJ or SDKs;
    • This was a clean installation of Ubuntu; I totally removed my Windows 8 (yeah, am done with Windows) and installed Ubuntu 13.

    I don't know what else to try and do because I have spent hours online trying suggestions from others to no avail.

    Any help would be really appreciated because I can't wait to get back to my Android App Development! Thank you.

    EDIT - SOLUTION

    I solved this problem and then documented it here for others who are having this issue; ADB not responding - the solution

    I hope this helps.

  • Bhargav Nanekalva
    Bhargav Nanekalva about 9 years
    This was a spot on for me. Thanks.
  • ViliusK
    ViliusK about 9 years
    Worked for me too! Thanks.
  • RevNoah
    RevNoah about 9 years
    This resolved the issue for me on Ubuntu 14.10 64bit. I could run adb from the terminal without problem, restarting adb had no effect.
  • Pratik Butani
    Pratik Butani about 8 years
    Unable to read package.
  • Chathura Wijesinghe
    Chathura Wijesinghe almost 8 years
    this was solve my problem, thanks
  • Kiran Reddy
    Kiran Reddy over 5 years
    This worked for me but I have to repeat this every time I restart my computer.