gpt4 book ai didi

android - 当 adb 通过 tcpip 连接时重启设备

转载 作者:可可西里 更新时间:2023-11-01 02:42:45 31 4
gpt4 key购买 nike

我已经使用 adb connect <ipaddress> 通过 tcpip 连接了一个安卓设备.我能够在此设备上执行 adb 的所有操作。

然而,当我发出命令时 adb -s <ip>:5555 reboot ,我看到提示只是挂起并且没有在设备上执行重启。

这是 adb 相对于 tcpip 的已知限制吗?
在这种情况下,还有其他方法可以发出重启命令吗?
提前致谢

最佳答案

命令 adb -s :5555 reboot 不正确adb -s <IP Address>:<5555> reboot 正确

如果你的设备IP是172.16.7.123 , 使用以下内容。

$ adb connect 172.16.7.123

假设您的设备列表显示以下内容

$ adb devices
List of devices attached
172.16.7.123:5555 device
0554e0700a67240d device

使用 adb 重启设备的正确方法是

$ adb -s 172.16.7.123:5555 reboot

发出上述命令后,您的提示将自 adbd 起挂起守护进程在设备上被杀死。

要恢复正常,请使用 adb disconnect 172.16.7.123在另一个提示上,它将恢复正常。

关于android - 当 adb 通过 tcpip 连接时重启设备,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25385647/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com