adb基础知识

操作系统:Mac OS
1.首先看一下5037端口是否有进程占用
netstat -na | grep 5037
2.执行adb shell


image.png

3.再次执行
netstat -na | grep 5037


image.png

adb server在监听5037端口
4.adb tcpip 5555
5.adb connect 192.168.51.57
6.再次打开一个shell
输入

netstat -na | grep 5037


image.png

adb client和adb server建立tcp连接了
7.adb server 和adb daemon建立连接
image.png

你可能感兴趣的:(adb基础知识)