摘要: 在PC机(以windows为例)上启动了adb.exe进程时,adb会在本地生成一对密钥adbkey(私钥)与adbkey.pub(公钥);接着手机界面会根据弹框提示“The computer's RSA key fingerprint is:xxxx”,可以看出是一对RSA算法的密钥,其中公钥是用 阅读全文
posted @ 2021-02-23 15:36 Maleonn 阅读(1841) 评论(0) 推荐(0) 编辑
摘要: adb shell常用命令 adb shell 登陆设备的shell adb shell <command命令> 直接运行设备命令,相当于执行远程命令。安卓系统是基于Linux系统开发的,支持常见的Linux命令,这些命令保持在手机的/system/bin文 件夹下,可以通过adb shell <c 阅读全文
posted @ 2021-02-23 11:39 Maleonn 阅读(908) 评论(0) 推荐(0) 编辑
摘要: adb常用命令 adb version 查看版本 adb help 查看帮助 adb kill-server 关闭adb服务 adb start-server 启动adb服务 adb devices [-l] 查看设备 C:\Users\CRGT>adb devices List of device 阅读全文
posted @ 2021-02-23 11:33 Maleonn 阅读(137) 评论(0) 推荐(0) 编辑