How to use adb through ethernet

取消
显示结果 
显示  仅  | 搜索替代 
您的意思是: 

How to use adb through ethernet

8,629 次查看
KevinSong
NXP Employee
NXP Employee

Use adb through Ethernet:

Get board IP address:

busybox ifconfig

ADBD default use USB output. Change it to ethernet:

setprop service.adb.tcp.port 5555

stop adbd

start adbd

On host, restart ADB:

export ADBHOST=<board IP address>

adb kill-server

adb start-server



标签 (1)
标记 (2)
0 项奖励
2 回复数

1,503 次查看
mingzhou
NXP Employee
NXP Employee

You can also connect host to target device by this commands:

adb connect xxx.xxx.xxx.xxx(IP address)

if you want to disconnect, use

adb disconnect

Then you can connect to other device through ethernet or usb cable.

0 项奖励

1,503 次查看
SergioSolis
NXP Employee
NXP Employee

Thank you for the information Bing and Ming!

0 项奖励