Unlock all Nokia MTK devices without disassembling (tested on Nokia 2.3 TA-1206) - Nokia 2.1 Guides, News, & Discussion

Message to mods: If this thread was posted before, please delete it.
Tested on Nokia 2.3 (TA-1206). Guide assume you're running Debian/Ubuntu Linux, steps will differ on other operating systems.
WARNING: All your data will be wiped. Warranty will be void and device may be corrupt after the process. Do it at your own risk.
Click to expand...
Click to collapse
STEP 1​Download MtkClient and install dependencies​Execute those commands.
sudo apt install python3 git libusb-1.0-0 python3-pip
git clone https://github.com/bkerler/mtkclient
cd mtkclient
pip3 install -r requirements.txt
python3 setup.py build
sudo python3 setup.py install
Click to expand...
Click to collapse
STEP 2​Wipe userdata and two other partitions​If this will fail, don't worry. It might be that your device doesn't have md_udc partition.
sudo mtk e metadata,userdata,md_udc
Click to expand...
Click to collapse
STEP 3​Unlock bootloader​
sudo mtk da seccfg unlock
Click to expand...
Click to collapse
And it's done. You can unplug USB and reboot the phone.
Relock bootloader​
sudo mtk da seccfg lock
Click to expand...
Click to collapse
If there's no custom ROM for your device, you could try GSI images.
LineageOS GSI

its a good method but it has a very high chance of trigerring dmverity this can easily be fixed by flashing empty vbmeta usually

Hello, I am sorry to be asking here. Do you have the original boot.img for this device? (nokia 2.3 TA-1026) or any working boot.img would be fine. If so would you pass it to me? Thanks in advance

This is an old post but were you able or was anyone able to flash a GSI on this device? I'm looking forward to it

Related

Micromax Yu Ace

Any one help me how I inable Camera2Api in Yu Ace
I rootet this device with Magisk
Help me any one port twrp for this device
Need also custom rom
rehan992 said:
Any one help me how I inable Camera2Api in Yu Ace
I rootet this device with Magisk
Click to expand...
Click to collapse
Plz Explain how did you root it...
I want install twrp on this device with miui rom
I ported TWRP for my Yu ace from Mi6a and perfectly flashed it but there's and error coming...
Failed to decrypt data .
Failed to mount '/cust' (Invalid Argument)
Simulating actions....
I want to First backup my stock rom with twrp so that if any thing goes wrong I can restore to stock but because of error I'm not able to make a backup
What to do ??????
rehan992 said:
Help me any one port twrp for this device
Click to expand...
Click to collapse
I have ported twrp for yu ace
rehan992 said:
Any one help me how I inable Camera2Api in Yu Ace
I rootet this device with Magisk
Click to expand...
Click to collapse
Terminal command:
setprop persist.camera.HAL3.enabled 1
setprop persist.vendor.camera.HAL3.enabled 1
setprop persist.camera.stats.test 5
setprop persist.vendor.camera.stats.test 5
joke19 said:
Terminal command:
setprop persist.camera.HAL3.enabled 1
setprop persist.vendor.camera.HAL3.enabled 1
setprop persist.camera.stats.test 5
setprop persist.vendor.camera.stats.test 5
Click to expand...
Click to collapse
Rooted with magisk boot patched IMG
Please send me twrp
Also my cell phone is dead help me
vikasrmourya;79272p485 said:
I have ported twrp for yu ace
Click to expand...
Click to collapse
Please send me the link of twrp really I neede
vikasrmrourya said:
Plz Explain how did you root it...
I want install twrp on this device with miui rom
Click to expand...
Click to collapse
I patched boot.IMG with magisk and unlock the bootloader and flash those boot.IMG with fastboot command
Fastboot flash boot boot.IMG
Easy steps
rehan992 said:
Please send me the link of twrp really I neede
Click to expand...
Click to collapse
If you want TWRP I can provide the link for it. And do remember it is not port and was built from Omni source, so it will not cause any problems that you might face with a Ported TWRP.
Here is the link for TWRP recovery.
https://drive.google.com/file/d/1T09QkNcDSe0mp7EjjMSK1aoc8303DjAI/view?usp=sharing
Soon I will post a thread on Rooting and flashing TWRP recovery without any errors.
For this time flash TWRP using below command through Fastboot and do remember your device must be unlocked before flashing anything.
Enter fastboot mode by entering below command in Command Prompt or Terminal:
Code:
adb reboot bootloader
just check if your device is recognised by using the below command:
Code:
fastboot devices
Now you can flash TWRP using below command:
Code:
fastboot flash recovery TWRP_recovery.img
If you patched boot.img then no need to flash Magisk (I recommend to patch boot.img using Magisk and then flashing TWRP).
If you want to go to recovery mode from fastboot then use below command:
Code:
fastboot oem reboot-recovery
If you want to enter system from fastboot then use below command.
Code:
fastboot reboot
Hope this one helps you. In my view you have already installed ADB tools or otherwise do it now., also you have enabled Developer Options with unlocked bootloader.

[ROOT] How to flash recovery within Android with terminal / adb shell

Hi,
this is a small tutorial to show you how to flash the recovery, also eRecovery, via command line / adb shell within Android.
Flashify and other apps never worked for me, so I used commands to flash it without the need of fastboot.
It's a small tutorial for those who never worked with commands like this.
Please notify me if something went wrong or if you found any other issues.
I wanted to make a small script but I stopped it because of the lack of available commands in Android.
DISCLAIMER:
Read this tutorial first.
Never flash custom recovery to eRecovery.
Never flash recoveries from different devices.
Don't try to flash other partitions with this commands if you don't want to risk a brick.
Requirements:
- Oreo / EMUI 8 installed, Nougat hast other partition names. Pie isn't supported by me until final release.
- working root access
- terminal emulator app (I recommend Termius, it's easy to use and has nice features, it's free to use)
> or a PC, and USB cable and working ADB, also USB Debugging enabled in developer settings
- recovery img files on your phone, I recommend it to put them into your user root /data/media/0/ (internal memory)
NOTE: All commands are case sensitive!
Now open your terminal app or open the adb shell.
Type following command to enable root access:
Code:
su
SuperSU will ask you for root access, grant it.
Following command is needed to figure out, which type of memory your phone has:
Code:
ls /dev/block/platform
There are two possible outputs:
If you've a device with the faster UFS memory, it's ff3b0000.ufs, if eMMC it's hi_mci.0.
From now I'll write MEMORY instead of ff3b0000.ufs or hi_mci.0.
For flashing the recovery fire up following command:
Code:
dd if=/PATH/TO/YOUR/RECOVERY.IMG of=/dev/block/platform/MEMORY/by-name/recovery_ramdisk_a
Example: dd if=/data/media/0/twrp_3.2.1.img of=/dev/block/platform/ff3b0000.ufs/by-name/recovery_ramdisk_a
The output should look like this:
Code:
65536+0 records in
65536+0 records out
33554432 bytes transferred in 0.247 secs (135847902 bytes/sec)
If not, check your command and file paths.
For flashin the eRecovery fire up following command:
Code:
dd if=/PATH/TO/YOUR/ERECOVERY.IMG of=/dev/block/platform/MEMORY/by-name/erecovery_ramdisk_a
Example: dd if=/data/media/0/ERECOVERY_RAMDI.IMG of=/dev/block/platform/ff3b0000.ufs/by-name/erecovery_ramdisk_a
IMPORTANT NOTE: DO NOT INSTALL TWRP IN THIS! Flash only stock eRecovery!
The dd command won't give you any progress output, so be a bit patient. It should be done in a few second, but don't close the terminal app or connection before you got any output.
Unix systems like Android will give an output if something went wrong, always.
I use this to flash new TWRP versions or to flash stock recovery before I update.
If you recently updated your phone, you still need to flash via fastboot, because you lost root during the update.
The dd commands also work with fastboot. Mostly you'll use "fastboot flash recovery_ramdisk", but if you need to flash eRecovery, you can use the dd command.
23. February 2019:
Pie should also work, but you have to remove the "_a" after the partition name.
Example:
dd if=/data/media/0/twrp_3.2.1.img of=/dev/block/platform/ff3b0000.ufs/by-name/recovery_ramdisk
Please report if it's working or not.
How to know the path to the recovery_ramdisk?? Is all devices the same?? I didn't get it right the 1st time .. it shows path is invalid
Sent from my VTR-L29 using Tapatalk
fr3ker said:
How to know the path to the recovery_ramdisk?? Is all devices the same?? I didn't get it right the 1st time .. it shows path is invalid
Sent from my VTR-L29 using Tapatalk
Click to expand...
Click to collapse
Should be the same on every device. Remember, case sensitive and use _ and not -.
Maybe it's different on non UFS devices, which one do you have?
Are you able to post a screenshot of your command and output?
Jannomag said:
Should be the same on every device. Remember, case sensitive and use _ and not -.
Maybe it's different on non UFS devices, which one do you have?
Are you able to post a screenshot of your command and output?
Click to expand...
Click to collapse
Maybe @fr3ker is not on Oreo? The recovery_ramdisk partition is only for Oreo. In Nougat it is just called recovery. I don't know how the Pie partitions are called.
M1chiel said:
Maybe @fr3ker is not on Oreo? The recovery_ramdisk partition is only for Oreo. In Nougat it is just called recovery. I don't know how the Pie partitions are called.
Click to expand...
Click to collapse
Also my thought, I wanted to add this to the requirements when I created this post but apparently I forgot this. Now it's added as first point.
Hi.
I have a hard bricked p10. When I connect to laptop it's says USB SER. It doesn't not turn on I can't access recovery with power + vol. I can't get into fastboot. Anyway I can access fastboot to flash kernel and erecovery?
Jannomag said:
I use this to flash new TWRP versions or to flash stock recovery before I update.
Click to expand...
Click to collapse
Is it mandatory to flash stock recovery before update? Is it applies only to ota update or ff method?
Yes, FF or OTA are using stock recovery to flash the update. With TWRP it won't work.
Updated?
@ Jannomag:
Have you checked this for Pie meanwhile?
I currently have the problem, not being able to enter fastboot with:
Code:
sudo adb reboot bootloader
Additionally, there's something I do not understand. For the dd-command for flashing, why is the input-file (if=) the file in "/dev/block/platform/..." and the output on the sd-card? Wouldn't mean flashing an img to the device, that if= on the sd (or connected PC) and of= the path to the device (phone)?
Blümchen Blau said:
@ Jannomag:
Have you checked this for Pie meanwhile?
I currently have the problem, not being able to enter fastboot with:
Code:
sudo adb reboot bootloader
Additionally, there's something I do not understand. For the dd-command for flashing, why is the input-file (if=) the file in "/dev/block/platform/..." and the output on the sd-card? Wouldn't mean flashing an img to the device, that if= on the sd (or connected PC) and of= the path to the device (phone)?
Click to expand...
Click to collapse
WTF....Why didn't I notice this terrible mistake! Thank you for reading my post completely, you're 100% correct, I'll correct this directly after I submit this post.
Huawei did also a small change at naming the recovery partition, which I'll update, too.
I had also the problem that I wasn't able to boot into fastboot by command before I fried my phone - I couldn't figure out the reason for this.
Again, thank you!
Jannomag said:
Again, thank you!
Click to expand...
Click to collapse
Your'e welcome! I did update now, but didn't need your (correct ) way to fastboot, because the method described by borgerapper did the trick for me to get into fastboot and flash the needed original recovery.
Thanks anyway!

Android 12 beta GSI on Galaxy A10?

Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
alansojan2020 said:
Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
Click to expand...
Click to collapse
... Galaxy A10 is crying on Android 11... Also wait for devs to make the ROM or make your own ROM. I don't bellive in gsi installing. If you have Android 12 gsi can I have link pls lol
Abd El-Rahman El-Batal said:
... Galaxy A10 is crying on Android 11... Also wait for devs to make the ROM or make your own ROM. I don't bellive in gsi instal
Click to expand...
Click to collapse
Abd El-Rahman El-Batal said:
... Galaxy A10 is crying on Android 11... Also wait for devs to make the ROM or make your own ROM. I don't bellive in gsi installing. If you have Android 12 gsi can I have link pls lol
Click to expand...
Click to collapse
I have it here https://www.getdroidtips.com/download-android-12-gsi/
alansojan2020 said:
Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
Click to expand...
Click to collapse
Also gimme gsi link lol
alansojan2020 said:
Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
Click to expand...
Click to collapse
I tried gsi before. I tried android 11 gsi which didn't worked. Anyways can I install vendor with it maybe it works?
Abd El-Rahman El-Batal said:
Also gimme gsi link lol
I tried gsi before. I tried android 11 gsi which didn't worked. Anyways can I install vendor with it maybe it works?
Click to expand...
Click to collapse
I tried it with 64 bit A10 vendor but it doesn't work
alansojan2020 said:
I tried it with 64 bit A10 vendor but it doesn't work
Click to expand...
Click to collapse
Then try 32 bit one lol
alansojan2020 said:
Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
Click to expand...
Click to collapse
BRO I found the solution.
Ok first clean to install a new ROM in twrp.
I mean wipe system and data and cache. Now switch twrp to install image mode and choose "system.img" flash it as system.
And flash this after it. The dm verification disabler. BUT make sure you have some empty space in internal storage. [About 5GB or smth] clean up space. Tell me your results after doing this. Here is file [check attachments] I'm 50% sure it gonna work. Plz tell me results.
Edit: NVM I tested it people was saying it works it doesn't. So read next post.
alansojan2020 said:
Hello, is there any possible way to install android 12 beta GSI on Galaxy A10? The only method I come across is fastboot which is just bringing me to download mode which will not work for installing.
Click to expand...
Click to collapse
Ok bro the dm verify not gonna work.
You must do the following commands people tried before and it worked.
First put your device in recovery.
Make sure to enable USB debugging.
Then if you can't boot to recovery simply when device is on type command:
and reboot recovery
And it will reboot you to recovery.
Clean the system and other stuff such as data.
TWRP supports adv commands btw
Simply type and reboot bootloader or just reboot to download mode ._ .
Now you gotta type command:
fastboot devices
If you see your device listed type comman
fastboot flash system SYSTEM://IMAGE/LOCATION.IMG
Then when done.. [gsi comes with vbmeta file]
Do this command:
fastboot flash vbmeta VBMETA://IMAGE/LOCATION.IMG
then just do this command:
fastboot reboot
Tell me results.
Abd El-Rahman El-Batal said:
Ok bro the dm verify not gonna work.
You must do the following commands people tried before and it worked.
First put your device in recovery.
Make sure to enable USB debugging.
Then if you can't boot to recovery simply when device is on type command:
and reboot recovery
And it will reboot you to recovery.
Clean the system and other stuff such as data.
TWRP supports adv commands btw
Simply type and reboot bootloader or just reboot to download mode ._ .
Now you gotta type command:
fastboot devices
If you see your device listed type comman
fastboot flash system SYSTEM://IMAGE/LOCATION.IMG
Then when done.. [gsi comes with vbmeta file]
Do this command:
fastboot flash vbmeta VBMETA://IMAGE/LOCATION.IMG
then just do this command:
fastboot reboot
Tell me results.
Click to expand...
Click to collapse
Okay I will do it tomorrow, thank you.
Abd El-Rahman El-Batal said:
Ok bro the dm verify not gonna work.
You must do the following commands people tried before and it worked.
First put your device in recovery.
Make sure to enable USB debugging.
Then if you can't boot to recovery simply when device is on type command:
and reboot recovery
And it will reboot you to recovery.
Clean the system and other stuff such as data.
TWRP supports adv commands btw
Simply type and reboot bootloader or just reboot to download mode ._ .
Now you gotta type command:
fastboot devices
If you see your device listed type comman
fastboot flash system SYSTEM://IMAGE/LOCATION.IMG
Then when done.. [gsi comes with vbmeta file]
Do this command:
fastboot flash vbmeta VBMETA://IMAGE/LOCATION.IMG
then just do this command:
fastboot reboot
Tell me results.
Click to expand...
Click to collapse
When I type in fastboot devices it just comes up
"C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot devices
C:\Program Files (x86)\Minimal ADB and Fastboot>"
alansojan2020 said:
When I type in fastboot devices it just comes up
"C:\Program Files (x86)\Minimal ADB and Fastboot>fastboot devices
C:\Program Files (x86)\Minimal ADB and Fastboot>"
Click to expand...
Click to collapse
Yes me too. I thought my device was broken but smasungs does not support fastboot. It is impossible to install gsi using fastboot in a smasung device. Instead you can wait for a developer to release android 12 ROM.
Abd El-Rahman El-Batal said:
Yes me too. I thought my device was broken but smasungs does not support fastboot. It is impossible to install gsi using fastboot in a smasung device. Instead you can wait for a developer to release android 12 ROM.
Click to expand...
Click to collapse
I found this.
alansojan2020 said:
I found this.
Click to expand...
Click to collapse
Samsungs does not support fastboot. We have to wait until a developer releases android 12 ROM for galaxy a10
Abd El-Rahman El-Batal said:
Samsungs does not support fastboot. We have to wait until a developer releases android 12 ROM for galaxy a10
Click to expand...
Click to collapse
The video isnt using fastboot though
alansojan2020 said:
The video isnt using fastboot though
Click to expand...
Click to collapse
I tried the way and it ended up in a bootloop. I have to install my Rom again and set it up again
Abd El-Rahman El-Batal said:
I tried the way and it ended up in a bootloop. I have to install my Rom again and set it up again
Click to expand...
Click to collapse
Oh okay sorry about that.
alansojan2020 said:
Oh okay sorry about that.
Click to expand...
Click to collapse
So, I'm on cherish is right now. By the way. When I installed the Android 12 gsi and the system partition used all storage. And there was 64mb free only in system partion. Is that the problem?
Also I don't mind it's okay :3
Abd El-Rahman El-Batal said:
So, I'm on cherish is right now. By the way. When I installed the Android 12 gsi and the system partition used all storage. And there was 64mb free only in system partion. Is that the problem?
Also I don't mind it's okay :3
Click to expand...
Click to collapse
Is cherish really fast?
alansojan2020 said:
Is cherish really fast?
Click to expand...
Click to collapse
Want a gaming rom? Fast? Use the stock android 9 rom. Want android 11 gaming rom? Use corvus. Want android 11 gaming rom and with bunch of features? Use LINEAGE OS FE [FAN EDITION] it's the best rom I had for now.
Abd El-Rahman El-Batal said:
Want a gaming rom? Fast? Use the stock android 9 rom. Want android 11 gaming rom? Use corvus. Want android 11 gaming rom and with bunch of features? Use LINEAGE OS FE [FAN EDITION] it's the best rom I had for now.
Click to expand...
Click to collapse
Hi how do I install stock samsung android 10 rom with twrp?

How To Guide [TUTORIAL] ULTIMATE How to flash GSI Trebble AND ROM and root on Xiaomi device on Windows (files needed included)

Hi, first of all, I'm not a dev or else just user who had difficulties to flash GSI on my phone... Was 7 years with a samsung galaxy Note 3, with twrp....So easy to flash....
with the help of @gr0ndpa, thanks to him.....
FLASH GSI​
Now I will explain how to flash easily with files attached
1/ first of all you need a phone and drivers installed, use xiaomi pc suite, unzip and install it
2/ you need to activate USB debug in dev options.
3/ dl adb folder unzip it and put in C
4/ run command and type
Code:
cd /adb
5/ then
Code:
adb devices
to check if phone recognised
6/
Code:
adb reboot bootloader
once in fast boot
7/
Code:
fastboot flash vbmeta vbmeta.img
wait finished type to enter in fastbootD
8/
Code:
fastboot reboot fastboot
9/
Code:
fastboot flash system
LiR 313.XXX.img
you will have a system error, but wait the flash begin in few seconds
at the end wait ok then
10/
Code:
fastboot reboot recovery
on stock recover
11/ wipe data and reboot with +/- and PWR
and you're done...
In case you want to flash custom kernel or patched boot image to root with magisk, you have to
12/
Code:
adb reboot bootloader
Copy kernel boot image to C drive and rename kernel boot image to boot.img.
13/
Code:
fastboot flash boot c:\boot.img
14/
Code:
fastboot reboot
In case you want to flash twrp put the file to adb folder and type in fastboot
15/
Code:
fastboot boot twrp.img
Downloads for : Xiaomi Mi 11 Lite 5G | AndroidFileHost.com | Download GApps, Roms, Kernels, Themes, Firmware and more. Free file hosting for all Android developers.
Download GApps, Roms, Kernels, Themes, Firmware, and more. Free file hosting for all Android developers.
androidfilehost.com
You can check what I ve done on tuto ss...
if you have some comments, don't hesitate...
I flashed LiR 18.1 rom and very happy with it.....
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++==================================================================================================================================================================================================================++
Flash ROM​
This now how to flash ROM on your device, it's convenient for all roms like LOS, corvus, awaken...
First you need all the proper drivers installed and unlocked bootloader, USB debugging all of that stuff.
Now open up a cmd/terminal , and put the files i sent and the ROM file in the folder from where you're opening the cmd/terminal and connect the phone (you may need to put ./ as an suffix for all the commands if you're on linux)
Type
Code:
adb reboot bootloader
Then type
Code:
fastboot devices
to see if everything is ok
Then type
Code:
fastboot flash boot_ab boot.img
(you can drag and drop the file instead of typing it)
After that's done type
Code:
fastboot flash vendor_boot_ab vendor_boot.img
(you can drag and drop this too if you want)
Code:
fastboot flash dtbo dtbo.img
(you can drag and drop this too if you want)
After that's done type
Code:
fastboot reboot recovery
This will boot you into a recovery and now you need to go to wipe and format data
After that go to apply update then adb sideload then
In the cmd type
Code:
adb sideload rom.zip
for example (you put the ROM zip here you can drag and drop it)
Wait for that to finish it will go to 47% and on the phone it will show step 1/2 then step 2/2
and when it's done it's gonna show an error
adb: failed to read command: No error
Then you can reboot to system
Hello thank your for the short HowTo. Unfortunately im stuck on invalid sparse error. Could you pls post a fix to solve this? Would appreciate your help.
hardshell said:
Hello thank your for the short HowTo. Unfortunately im stuck on invalid sparse error. Could you pls post a fix to solve this? Would appreciate your help.
Click to expand...
Click to collapse
You have to wait at least 30 sec after the error appear...
Are you sure you are on fastbootD???
tuto modified and completed to also root device with magisk and patch boot.img
when i restart into fastboot, it is frozen.
dy2592 said:
when i restart into fastboot, it is frozen.
Click to expand...
Click to collapse
normal, nothing happens on fastboot....when you flash, only thing is on your computer, not on screen..
cant seem to get this installed =(
rayman95 said:
8/
Code:
fastboot reboot fastboot
Click to expand...
Click to collapse
After I enter this, it just stays on waiting for any device.
Update: I was able to figure it out. My device had no drivers so I went search through updates on windows and installed a LeMobile Android driver os it shows up properly in device manager.
How does one install gapps?
dy2592 said:
After I enter this, it just stays on waiting for any device.
View attachment 5419437
Update: I was able to figure it out. My device had no drivers so I went search through updates on windows and installed a LeMobile Android driver os it shows up properly in device manager.
Click to expand...
Click to collapse
because you don't have xiaomi drivers installed...install xiaomi pc suite and you will have drivers installed...
duplicate
rayman95 said:
In step 14, I encountered the error "fastboot: error: ANDROID_PRODUCT_OUT not set" after executing the fastboot flash system command. what do I need to do?
Click to expand...
Click to collapse
Did you insert the img at the end?
Fastboot flash system LIRxxxxxxxxxxxx.img
you have to put your rom to adb folder and dont forget to add .img at the end
rayman95 said:
you have to put your rom to adb folder and dont forget to add .img at the end
Click to expand...
Click to collapse
1.img is your rom Is there anything else missing?
dy2592 said:
Did you insert the img at the end?
Fastboot flash system LIRxxxxxxxxxxxx.img
Click to expand...
Click to collapse
yaha your right thank you so much
rayman95 said:
you have to put your rom to adb folder and dont forget to add .img at the end
Click to expand...
Click to collapse
thank I solved my problem. Now I have another problem, how to install GAPPs
Patrick Star_ said:
thank I solved my problem. Now I have another problem, how to install GAPPs
Click to expand...
Click to collapse
run twrp, it's explain in 1st post or maybe try with magisk...I can install minimicroG nogoolag with it..
rayman95 said:
run twrp, it's explain in 1st post or maybe try with magisk...I can install minimicroG nogoolag with it..
Click to expand...
Click to collapse
I tried to use twrp to brush into GAPP, but the error is 70. How can I solve it? I don't know if there is a problem with my twrp. Can you send a tutorial on xiaomi11 Lite 5g installing twrp? Thank you very much
Patrick Star_ said:
I tried to use twrp to brush into GAPP, but the error is 70. How can I solve it? I don't know if there is a problem with my twrp. Can you send a tutorial on xiaomi11 Lite 5g installing twrp? Thank you very much
Click to expand...
Click to collapse
In case you want to flash twrp put the file to adb folder and type in fastboot
15/
Code:
fastboot boot twrp.img
And twrp link is in post 1..maybe you choose bad gapps variant

Stock Rom Backup before rooting

Hi there everyone, i want to know, how can i take a backup of stock rom of my device.
Do i need to root my device before taking a backup? If not then is there any other way to take backup of Stock Rom (i.e boot.img etc) with the help of PC (here Ubuntu Linux in my case) via using ADB, Fastboot and not using custom recoveries like TWRP, Orange Fox, SHRP.
Also do i have to root my device before installing any custom recovery in it?
I am very sorry for any inconveniences, as i am a newbie please accept my apologies.
as already mentioned in other thread one can't do anything on locked bootloader, therefore backup is impossible
https://forum.xda-developers.com/t/a-question-from-a-newbie.4407343
akram0010 said:
Hi there everyone, i want to know, how can i take a backup of stock rom of my device.
Do i need to root my device before taking a backup? If not then is there any other way to take backup of Stock Rom (i.e boot.img etc) with the help of PC (here Ubuntu Linux in my case) via using ADB, Fastboot and not using custom recoveries like TWRP, Orange Fox, SHRP.
Also do i have to root my device before installing any custom recovery in it?
I am very sorry for any inconveniences, as i am a newbie please accept my apologies.
Click to expand...
Click to collapse
Assuming that the bootloader is unlocked.
aIecxs said:
as already mentioned in other thread one can't do anything on locked bootloader, therefore backup is impossible
https://forum.xda-developers.com/t/a-question-from-a-newbie.4407343
Click to expand...
Click to collapse
Sorry i forgot to mention, but still unlocking bootloader doesn't root device.
I think the question is still valid
if your bootloader is unlocked just boot into TWRP and create backup, no root required
Code:
fastboot boot recovery.img
edit: or just download MIUI according to your current properties
Code:
adb shell getprop ro.build.fingerprint
the only other method would be MTK secure boot authentification exploit
https://github.com/francescotescari/XiaoMiToolV2
https://github.com/bkerler/mtkclient
https://forum.xda-developers.com/t/mod-dev-mediatek-mtk-auth-bypass-sla-daa-utility.4232377
aIecxs said:
if your bootloader is unlocked just boot into TWRP and create backup, no root required
Code:
fastboot boot recovery.img
edit: or just download MIUI according to your current properties
Code:
adb shell getprop ro.build.fingerprint
the only other method would be MTK secure boot authentification exploit
https://github.com/francescotescari/XiaoMiToolV2
https://github.com/bkerler/mtkclient
https://forum.xda-developers.com/t/mod-dev-mediatek-mtk-auth-bypass-sla-daa-utility.4232377
Click to expand...
Click to collapse
Is root needed
aIecxs said:
if your bootloader is unlocked just boot into TWRP and create backup, no root required
Code:
fastboot boot recovery.img
edit: or just download MIUI according to your current properties
Code:
adb shell getprop ro.build.fingerprint
the only other method would be MTK secure boot authentification exploit
https://github.com/francescotescari/XiaoMiToolV2
https://github.com/bkerler/mtkclient
https://forum.xda-developers.com/t/mod-dev-mediatek-mtk-auth-bypass-sla-daa-utility.4232377
Click to expand...
Click to collapse
Can you please tell me what is this recovery.img, and where would i get it (in Fastboot rom or recovery rom).
As i said earlier i am a newbie in this field and very much confused with these terms.
no root required click on the first link above and download TWRP for your device (TWRP-3.4.2.b_lancelot.zip)
I assume you are running windows?
extract zip file and place recovery.img on your PC in platform-tools directory. connect phone in fastboot mode, install android_winusb.inf "Android Bootloader Interface" drivers and from cmd.exe check fastboot devices
if you can see device serialno you are ready to boot TWRP from fastboot with above first command.
for linux just install android-tools-fastboot
As i am using Ubuntu i installed ADB, FASTBOOT using the APT :
Code:
sudo apt install android-tools-adb android-tools-fastboot
.
Therefore i don't have the platform-tools directory.
Also I am unable to quote reply, its showing error (Oops, we broke the Matrix, someone call Neo)
yes that's right. it doesn't matter which directory files are placed. that way you installed fastboot binary is already in PATH. linux is far more easier and doesn't require additional drivers. it might require additional udev rules to make fastboot work, but you can simply by-pass with sudo fastboot for now...

Categories

Resources