adb kill-server not responding?

前端 未结 9 2142
醉酒成梦
醉酒成梦 2020-12-10 15:21

in adb I am facing new error only my adb version is printing

padmakumar@padmakumar-desktop:~$ adb version
Android Debug Bridge version 1.0.29
相关标签:
9条回答
  • 2020-12-10 15:52

    adb kill-server did not work on my Linux computer

    First, I used ps -ef | grep adb and killed all adb deamonswhich did not solve the problem. Then I usedps -ef | grep javaand saw a process that was blocking theadb`.

    Upon killing that process, adb worked perfectly. Maybe this process can be helpful for someone.

    0 讨论(0)
  • 2020-12-10 15:55

    install following packages

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

    if you are using Genymotion then set path of Android SDK in its settings.

    ref :http://www.intellicode.in/adb-not-responding-wait-more-or-kill-adb-or-restart/

    0 讨论(0)
  • 2020-12-10 16:00

    If using the "kill-server" parameter doesn't work you will have to kill the process itself.

    In case you use GNU/Linux you have to use the command "ps aux|grep adb" to find the pid of the adb proccess, or directly with "pidof adb" and then "kill PID" where PID is the pid number of the adb process. This should also work with Macintosh and other Unixes (although the parameters of the "ps" command may be different)

    In Windows just open the task manager to and kill the adb entry in the proccesses table

    0 讨论(0)
提交回复
热议问题