我正在尝试通过 tcpip 连接我的 android 设备,这是我迄今为止的经验:
$ ./adb tcpip
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
restarting in TCP mode port: 67
$ ./adb connect 192.168.1.250:67
unable to connect to 192.168.1.250:67:67
$ ./adb connect 192.168.1.250
unable to connect to 192.168.1.250:5555
然后我做了:
$ ./adb kill-server
接着:
$ ./adb tcpip 5555
* daemon not running. starting it now on port 5037 *
* daemon started successfully *
$ ./adb connect 192.168.1.250
connected to 192.168.1.250:5555
- 为什么我只能在执行
./adb tcpip 5555
and 之后才能连接? - 为什么我无法通过执行连接
./adb connect 192.168.1.250:67
o/p 处的这些消息是
./adb tcpip
什么意思?- 守护进程没有运行。现在在端口 5037 上启动它 *
守护进程成功启动 *
在 TCP 模式下重启端口:67
adb kill-server
不需要。我可以:
adb tcpip 5555
这给出:以 TCP 模式重新启动端口:5555
上面的消息是什么意思?