adb 禁用验证 - 未找到
我正在我的 ubuntu 机器 20+ 中尝试使用 adb 进行 DUT 调试。 当我尝试禁用验证时,出现以下错误“/system/bin/sh 未找到禁用验证” 我尝试再次重新安装 adb,但遇到了同样的问题。 我在不同的 Windows 设置中运行了 DUT,但它运行良好 我缺少什么吗?
我注意到的另一件事是:仅运行 adb 会产生分段错误,但是运行 adb 与其他参数运行良好。即 adb 设备
I am trying DUT debugging using adb in my ubuntu machine 20+.
when I try to disable-verity, I am getting the following error "/system/bin/sh disable-verity not found"
I tried reinstalling adb again , and I am running to the same issue.
I ran the DUT in different windows setups, it is running fine though
Anything I am missing?
Another thing I noted is: running just adb is giving segmentation fault, however running adb with other arguements is running fine. ie adb devices
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该二进制应用程序
disable-verity
需要自己构建,原厂库存镜像没有此二进制应用程序,您应该从google 的 aosp
源构建它,然后上传到手机目录下,赋予执行权限,最后执行即可。在所有重要的准备步骤之前,您应该首先拥有根电源权限
。That binary application
disable-verity
needed to be build by yourself, original factory stock image doesn't have this binary application, you should build it fromgoogle's aosp
source , and upload to phone's directory ,after that give it execution permission ,lastly execute it. before all of that steps which that important preparation is you should have rootpower permission
first.