我植根我的解锁 Galaxy S3(SGH-T999)
现在,我尝试从 Windows 命令提示符运行 adb root
,但是,我得到 adbd cannot run as root in production builds
错误。所以,我检查的第一件事就是我的手机是否真的被植入了?
所以我尝试了以下方法:
打开命令提示符
$adb devices // lists my device
$adb shell //goes to shell
$su // opens a 'SuperSu' prompt on my phone and I 'Grant' permission
# // Before following the rooting instructions, I was getting 'no su command found' in the previous step. So, I believe my phone is ROOTED. **Correct me if I'm wrong.**
但是,当我执行 adb root
时,会得到 adbd cannot run as root in production builds
错误。
所以,我想,我可能要做一些额外的东西,超出我上面所做的。我尝试了以下问题的所有解决方案:
以上这些对我来说都不管用。它们所做的只是在 SHELL 内部提供 ROOT 访问。我希望 adb root
能够正常工作,这样我就可以执行各种 adb 命令,而无需进入 shell。