Adb Not Responding - Wait More or Kill Adb or Restart (Ubuntu 13) 64-Bit

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

This worked for me (Ubuntu 14.04):

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

Adb kill-server not responding?

I also came across the same error when I was trying to install one app in emulator. You need not restart PC to overcome this. Just kill the server. if 'adb kill-server' is also not working, kill the process (adb.exe) through task manager. There you go!!

ADB not responding. If you'd like to retry, then please manually kill adb and click 'Restart' in Ubuntu

This worked for me in (Ubuntu 14.04):

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

Android ADB device offline, can't issue commands

I just got the same problem today after my Nexus 7 and Galaxy Nexus were updated to Android 4.2.2.

The thing that fixed it for me was to upgrade the SDK platform-tools to r16.0.1. For me, this version was not displayed in my SDK Manager, so I pulled it down from http://dl.google.com/android/repository/platform-tools_r16.0.1-windows.zip directly.

You then need to rename the platform-tools directory and unzip it to android-sdk-windows/platform-tools. Using the SDK Manager, I had also updated to the latest sdk-tools before this.

If your whole Eclipse and ADT are ancient, you may need to update them as well, but I didn't need to.

Note: you may need to run SDK Manager twice (once to update itself) before you will see the latest packages.

How to make Android's aapt and adb work on 64-bit Ubuntu without ia32-libs (works for versions 12, 13 and 14)

While dpkg --add-architecture i386 command is not needed in the current version of Ubuntu (13.10), it is required in the current Debian versions (7.x) and it will be required in the future Ubuntu versions as well. So I am going to leave it in. Just ignore it for Ubuntu 13.10.

sudo dpkg --add-architecture i386
sudo apt-get -qqy update
sudo apt-get -qqy install libncurses5:i386 libstdc++6:i386 zlib1g:i386

Update: aapt indeed requires zlib so I added it to the list. But you should not be needing any lib32 packages.



Related Topics



Leave a reply



Submit