美文网首页
mac ADB server didn't ACK,安装时adb

mac ADB server didn't ACK,安装时adb

作者: Robin丶丨 | 来源:发表于2020-04-20 18:30 被阅读0次

    使用adb kill-server有时没有用的,因为此时是其他进程的监听了abd端口(5037),而不是adb。

    解决方法:

    Mac-mini:platform-tools caijxlsof -P | grep ':5037' | awk '{print2}' | xargs kill -9

    Mac-mini:platform-tools caijx$ sudo lsof -i :5037

    Mac-mini:platform-tools caijx$ ./adb start-server

    • daemon not running. starting it now on port 5037 *

    • daemon started successfully *

    相关文章

      网友评论

          本文标题:mac ADB server didn't ACK,安装时adb

          本文链接:https://www.haomeiwen.com/subject/wzkjihtx.html