How to install Magisk on Xiaomi Mi Note 10 (tucana)
1 min read
- unlock bootloader
- install MagiskManager
- download TWRP
- enable USB debugging and connect adb
- reboot to fastboot
adb reboot bootloader - boot to TWRP
fastboot boot twrp.img - after booting twrp decrypt /sdcard using your pin/pattern
- connect to device using adb
adb shell - copy boot partition to sdcard
dd if=/dev/block/bootdevice/by-name/boot of=/sdcard/boot.img - reboot to system
adb reboot - launch MagiskManager
- press "Install" in "Magisk" card
- uncheck "Recovery Mode"
- press next
- select boot.img file on the sdcard root
- after successeful patch pull patched boot image to pc
adb pull /sdcard/Download/magisk_patched-*.img ./ - reboot to bootloader again
adb reboot bootloader - flash patched boot image
fastboot flash boot magisk_patched-*.img - reboot to system
fastboot reboot - profit!