mac nexues 获取root权限

Root

  1. 打开开发者模式,打开“OEM解锁”和“USB调试”,
  2. 先执行
 adb reboot bootloader
  1. 下载 Root 工具,解压进入文件夹

  2. 解锁:
    老版本:

    sudo fastboot oem unlock
    

    新版本:

    fastboot flashing unlock
    
  3. 刷root

fastboot boot image/***.img

关于踩坑

卡在执行 fastboot boot image/***.img 或 ./root-mac.sh不动 , 并且报错:
如: could not clear output pipe; result e00002ed; / could not clear output pipe; result e00002ed

解决:

  • 重启手机
  • adb reboot bootloader
  • fastboot boot image/***.img

部分内容来源:

  1. https://www.jianshu.com/p/695763a86f7e
发布了79 篇原创文章 · 获赞 14 · 访问量 2万+

猜你喜欢

转载自blog.csdn.net/qq_38689232/article/details/98883078