adb 使用教程 -- install
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了adb 使用教程 -- install相关的知识,希望对你有一定的参考价值。
参考技术A adb全称android Debug Bridge,是一个通用命令行工具,其允许您与模拟器实例或连接的 Android 设备进行通信。它可为各种设备操作提供便利,如安装和调试应用,并提供对 Unix shell(可用来在模拟器或连接的设备上运行各种命令)的访问。说直白一点就是 通过adb可以实现用命令行控制设备 。1、adb安装步骤(mac版)
*注:Homebrew Cask 是 Homebrew 的扩展,借助它可以方便地在 macOS 上安装图形界面程序
执行上面的三行命令,如果显示如下图的信息,说明安装成功
2、adb连接设备,adb连接设备的方式有两种:USB 和 WLAN
2.1、adb 通过USB 连接设备:
如果看到如下图内容,说明adb和设备连接完成,之后就可以使用adb命令操作设备
2.2、adb 通过WLAN 连接设备:
如果看到如下图内容,说明adb和设备连接完成,之后就可以使用adb命令操作设备
如果 adb 连接丢失:
请确保您的主机仍与您的 Android 设备连接到同一个 WLAN 网络。
通过再次执行 adb connect 步骤重新连接。
如果无法连接,则重置 adb 主机:
然后,从头开始操作。
adb shell提示error: could not install *smartsocket* listener
执行adb shell命令遇到错误提示:
C:\\Users\\tester>adb shell ps|grep demo
error: could not install *smartsocket* listener: cannot bind to 127.0.0.1:5037: 通常每个套接字地址(协议/网络地址/端口)只
允许使用一次。 (10048)
This application has requested the Runtime to terminate it in an unusual way.
Please contact the application's support team for more information.
could not read ok from ADB Server
* failed to start daemon *
error: cannot connect to daemon
看提示是端口被占用,检查步骤:
C:\\Users\\tester>netstat -aon|findstr "5037"
TCP 127.0.0.1:5037 0.0.0.0:0 LISTENING 5148
TCP 127.0.0.1:5037 127.0.0.1:54801 ESTABLISHED 5148
TCP 127.0.0.1:5037 127.0.0.1:54931 TIME_WAIT 0
TCP 127.0.0.1:5037 127.0.0.1:54975 TIME_WAIT 0
TCP 127.0.0.1:5037 127.0.0.1:54992 TIME_WAIT 0
TCP 127.0.0.1:51966 127.0.0.1:5037 TIME_WAIT 0
TCP 127.0.0.1:51967 127.0.0.1:5037 TIME_WAIT 0
TCP 127.0.0.1:51968 127.0.0.1:5037 TIME_WAIT 0
TCP 127.0.0.1:51969 127.0.0.1:5037 TIME_WAIT 0
找到了5037端口占用的PID “5148”,再执行命令:
C:\\Users\\tester>tasklist|findstr "5148"
360MobileLink.exe 5148 Console 1 24,424 K
找到罪魁祸首了,kill它就可以了。
注意可能需要重新授权,不然会提示:
C:\\Users\\tester>adb shell ps|grep demo
error: device unauthorized.
This adb server's $ADB_VENDOR_KEYS is not set
Try 'adb kill-server' if that seems wrong.
Otherwise check for a confirmation dialog on your device.
以上是关于adb 使用教程 -- install的主要内容,如果未能解决你的问题,请参考以下文章