怎样卸载magisk框架(手机安装magisk获ROOT权限)
怎样卸载magisk框架(手机安装magisk获ROOT权限)四、将新文件magisk_patched_23000_p84Ta.img拷贝到电脑上,改名为boot_magisk.imgc:\tmp\fastboot>adb push C:\tmp\gionee-f103_SV16\boot.img /storage/emulated/0/download/boot2.img C:\tmp\gionee-f103_SV16\boot.img: 1 file pushed. 0.5 MB/s (7172096 bytes in 13.399s) c:\tmp\fastboot>adb shell shell@GiONEE_GBL7319:/ $ busybox ls -l /storage/emulated/0/download total 14008 -rw-rw---- 1 0 1028 7172096
要想获取root权限,通常是先安装twrp等第三方recovery,然后通过recovery安装magisk.但有些手机可能难以找到合适的第三方recovery。
前 提:
- 下载ADB工具
- 在电脑上安装手机的USB驱动
- 打开手机的USB调试
- Bootloader已经解锁
- 准备手机的启动镜像文件boot.img
- 下载magisk-23.apk,地址 https://github.com/topjohnwu/Magisk/releases?page=1
一、在手机上安装magisk-23.apk:用adb安装,也可拷文件到手机上安装
c:\tmp\fastboot>adb devices
List of devices attached
8T8HBIZSBU9PCM4S device
c:\tmp\fastboot>adb install c:/tmp/magisk-23.apk
Performing Push Install
c:/tmp/magisk-23.apk: 1 file pushed. 0.5 MB/s (6874374 bytes in 13.618s)
pkg: /data/local/tmp/magisk-23.apk
Success
此时“当前”状态 是:无法获取
二、将boot.img传到手机:
电脑拷贝
命令方式传递:
c:\tmp\fastboot>adb push C:\tmp\gionee-f103_SV16\boot.img /storage/emulated/0/download/boot2.img
C:\tmp\gionee-f103_SV16\boot.img: 1 file pushed. 0.5 MB/s (7172096 bytes in 13.399s)
c:\tmp\fastboot>adb shell
shell@GiONEE_GBL7319:/ $ busybox ls -l /storage/emulated/0/download
total 14008
-rw-rw---- 1 0 1028 7172096 Jan 1 04:20 boot.img
-rw-rw---- 1 0 1028 7172096 Jan 1 05:20 boot2.img
三、用刚安装的magisk(面具)处理上传好的boot.img,产生一个新启动镜像文件
四、将新文件magisk_patched_23000_p84Ta.img拷贝到电脑上,改名为boot_magisk.img
五、手机关机 - 按电源 音量减或加,启动到fastboot模式(或用adb reboot bootloader启动)。用boot_magisk.img通过adb命令fastboot boot xxx.img临时启动手机,不会破坏原手机系统
c:\tmp\fastboot>adb reboot bootloader
c:\tmp\fastboot>fastboot boot c:/tmp/fastboot/boot_magisk.img
Sending 'boot.img' (7310 KB) OKAY [ 0.715s]
Booting OKAY [ 0.056s]
Finished. Total time: 0.824s
六、查看root情况:“当前”状态显示magisk版本号表示成功
c:\tmp\fastboot>adb shell
shell@GiONEE_GBL7319:/ $ su
root@GiONEE_GBL7319:/ # 有root权限才会显示#号
七、如果想长期有效,使用如下命令将新文件刷入boot分区
fastboot flash boot c:/tmp/fastboot/boot_magisk.img
fastboot命令使用说明参考我的另一文章:
手机刷机调试命令:fastboot详细说明,版本:29.0.4-5871666