[WIP] Naman's Guide of Guides :- A complete Guide for Everything for Flashing !!! - YU Yuphoria

INDEX​
1. Installing Proper Fastboot and ADB drivers
2. Unlocking The Bootloader
3. Flashing A Custom Recovery (TWRP) via Fastboot
4. How To Root Your Stock or another Rom
5. Making important backups.
6. How To Make A Nandroid Backup With TWRP Recovery
7. How To Install A ROM with TWRP Recovery
8. How To Install A Custom Kernel With TWRP Recovery
9. How To Flash The Stock Kernel With Fastboot
10. How To Flash The Cyanogen OS Fastboot Images
11. Recovering from no OS installed and no ROM or Backup present on the phone.
12. Recovering from no OS installed and no access to TWRP, fastboot does work.
13. Recovering from no OS installed and no access to fastboot, TWRP does work.
14. Recovering from a Brickloop , No IMEI , Corrupt EFS
14. How to maintain your device after rooting/flashing.

{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
INSTALLING PROPER FASTBOOT AND ADB DRIVERS​
There are a lot ways to install drivers and a lot different drivers are available too,but,the ones that have always worked for me,are from PdaNet.So,here I recommend using these.
Step 1 :- Download PdaNet from here :- http://pdanet.co/bin/PdaNetA4181.exe
Step 2 :- Install them and follow the installation steps properly (Especially when to connect the phone. HINT :- Phone should not be connected in the beginning and has to be connected only when asked for.There might be a notification in your phone to allow Debugging access to your computer,accept it.)
Step 3 :- After the installation has finished,download Android Slim SDK from here :- http://fs1.d-h.st/download/00081/08w/AndroidSDKSlim.zip and extract them on the desktop. (Keep the phone connected to the PC during all this.)
Step 4 :- Open the extracted SDK folder on the desktop and open the platform-tools folder inside it.
Step 5 :- Inside the platform-tools folder,press Shift Key + Right Click and select “Open Command Window here”
Step 6 :- A command window will open.In the command window,enter the command :-
Code:
adb devices
If it shows your device,woohooo !!! Your drivers have installed !! If it doesn't,try uninstalling all earlier present USB Drivers from your PC and then again install PDANet . If that too doesn't work,tag me in the thread and I will try to help you to my best .. !!
UNLOCKING THE BOOTLOADER​
Step 1 :- Make sure you have proper ADB and Fastboot Drivers installed and working.See Part 1 for details.
Step 2 :- Go to Settings -> About Phone of your device and tap on Build Number 7 times to unlock the Developer Options .
Step 3 :- Go to Settings -> Developer Options and turn on ADB Debugging .
Step 4 :- Connect the phone to PC.
Step 5 :- On your PC, inside the platform-tools folder (See Part 1),press Shift Key + Right Click and select “Open Command Window here”
Step 6 :- In the command window,enter the command :-
Code:
adb reboot bootloader
The phone should boot into the fastboot mode.
Step 7 :- In the command window,enter the command :-
Code:
fastboot -i 0x2A96 oem unlock
Step 8 :- It should show you a prompt to press volume up button on your device.Press the volume up button.
It should unlock your bootloader.
Step 9 :- In the command window,enter the command :-
Code:
fastboot -i 0x2A96 reboot
The phone will reboot and will do some processing and will finally boot up.
Woohooo You have unlocked the bootloader….Now you are open to rooting,flashing ROMs etc. !!!
FLASHING A CUSTOM RECOVERY (TWRP) VIA FASTBOOT​
Step 1 :- Make sure you have proper fastboot and adb drivers installed (Part1) and bootloader unlocked (Part 2).
Step 2 :- Download TWRP Recovery from here :- https://s.basketbuild.com/devs/vishal_android_freak/yu/yuphoria/ and put it in the platform-tools folder on the Desktop (Part 1).Rename the Recovery file to recovery .
Step 3 :- On you device,in Settings -> About Device,tap on build number 7 times to unlock the Developer Options.
Step 4 :- In Settings -> Developer Options,turn on ADB Debugging and turn off Update Cyanogen Recovey.
Step 5 :- Connect your phone to PC.
Step 6 :- On your PC, inside the platform-tools folder,press Shift Key + Right Click and select “Open Command Window here”
Step 7 :- In the command window,enter the command :-
Code:
adb reboot bootloader
The phone should boot into the fastboot mode.
Step 8 :- In the command window,enter the command :-
Code:
fastboot -i 0x2A9 flash recovery recovery.img
It should flash recovery on your device.
Step 9 :- Remove the device from PC and remove the battery and put it again and power on the phone….
Woohoo …Now you have TWRP Flashed !!!

ROOTING STOCK OR ANY OTHER ROM​
Step 0 :- Make sure that you have unlocked the bootloader and have flashed TWRP on your device.
Step 1 :- Download SuperSU from here :- http://download.chainfire.eu/696/SuperSU/UPDATE-SuperSU-v2.46.zip and place it in your phone.
Step 2 :- Power off the device.
Step 3 :- Boot into TWRP Recovery by pressing Power + Volume Down button.
Step 4 :- Click on "Install" button.
Step 5 :- Find the downloaded SuperSU file and select it.
Step 6 :- Swipe to flash.
Step 7 :- Reboot System.
Woohooo You have successfully rooted your phone.
MAKING EFS BACKUP​
METHOD 1 :-
Step 1 :- Download Partitions Backup And Restore App from here :- https://play.google.com/store/apps/details?id=ma.wanam.partitions
Step 2 :- Open the app and in the App Settings,select backup output to .img
Step 3 :- From the list of partitions in the app,select modemst1 and modemst2 and backup those by clicking on the download like button at the bottom right .
Step 4 :- The EFS Partitions (modemst1.img and modemst2.img) will be backed up to the Internal Storage or External SD Card (as per your preference)
Step 5 :- Save these 2 files to Cloud Storage and as many places as possible as these are very important partitions.
METHOD 2 :-
Go to TWRP -> Advanced -> Terminal and type the following command :- (You must have an SD Card in the phone.If you don't have external SD Card,replace sdcard1 with sdcard0)
Code:
dd if=/dev/block/mmcblk0p12 of=/sdcard1/modemst1.bin bs=512
Press Enter
Code:
dd if=/dev/block/mmcblk0p13 of=/sdcard1/modemst2.bin bs=512
Press Enter
Go to the File Manager and save modemst1.bin and modemst2.bin to as many places as possible.
MAKING NANDROID BACKUP​
Step 1 :- Go to TWRP.
Step 2 :- Click on Backup.
Step 3 :- Select all options except Cache.
Step 4 :- Swipe to Backup.
A backup of around 3-4 GB will be created in the TWRP folder in Internal or External storage (as per your preference).It is recommended to save the Nandroid of Stock ROM in other places too…You MUST take a Nandroid Backup before flashing anything so that you remain safe most of the times.You can delete the Nandroid after ensuring that what you flashed didn’t cause any issue.BUT You must keep atleast one Nandroid always with you (Preferably of Stock ROM).

Reserved 3

Reserved 4

Hey, thanks for all this info. Looking forward to the rest. Wish this was up two weeks ago. After 16 hours I finally was able to unlock my bootloader and root on my own. Little. nervous to flash but your guide makes me feel more comfortable trying.
Sent from my C6833 using Tapatalk

drod0813 said:
Hey, thanks for all this info. Looking forward to the rest. Wish this was up two weeks ago. After 16 hours I finally was able to unlock my bootloader and root on my own. Little. nervous to flash but your guide makes me feel more comfortable trying.
Sent from my C6833 using Tapatalk
Click to expand...
Click to collapse
Don't worry.Unlocking the bootloader is already major part done.Flashing is very easy.Tell me which ROM you want to flash and I will help you out.

Thanks. I will follow your guide to install twrp custom recovery. Step 9 says to remove the battery. My battery is not removeable. Is step 9 required for my z ultra? If am successful with installing twrp, I will want to install a stable build of Cyanogenmod which I believe is 10.1
Sent from my C6833 using Tapatalk

Very Nice thread..its the same steps as my moto g requires..!!
keep up the good work..looking forward for rest of the steps

Is there any software for flashing the complete firmware image (I mean flashing everything, including the bootloader) from computer? Like we have SP Flash tool for Mediatek phones.. (I'm new to Snapdragon)

GokulNC said:
Is there any software for flashing the complete firmware image (I mean flashing everything, including the bootloader) from computer? Like we have SP Flash tool for Mediatek phones.. (I'm new to Snapdragon)
Click to expand...
Click to collapse
U can try this.

Ess Arr said:
U can try this.
Click to expand...
Click to collapse
Not something of this kind..
This just flashes the images through fastboot..
What if fastboot doesn't work?
I'm looking for something like....., we flash everything from the base (including the bootloader)
Thanks BTW

consider adding relocking bootloader guide !!

A very very helpful posts. ?

Yuphoria unroot and lockbootloader.
Sir,
Yesterday i rooted and unlocked bootloader and temporarily i installed twrp recvry and flash supersu by watching JAY KAPOORS GUIDE
But after listening that official Cm12.1 is coming in few days i wanted to revert back to original position .
I want to lock my bootloader and want to unroot my YU YUPHORIA .
Sir can you please help me .
Thank you
Yuphoria User.

Yash Meet said:
Sir,
Yesterday i rooted and unlocked bootloader and temporarily i installed twrp recvry and flash supersu by watching JAY KAPOORS GUIDE
But after listening that official Cm12.1 is coming in few days i wanted to revert back to original position .
I want to lock my bootloader and want to unroot my YU YUPHORIA .
Sir can you please help me .
Thank you
Yuphoria User.
Click to expand...
Click to collapse
You have to flash stock again to relock bootloader and you will loose your personal data. Anyway for flashing the stock you can try this.

Nandroid backup help
Can I make a nandroid backup by temporaryly booting in twrp as I don't want to loose ota updates by flashing twrp recovery . I have already unlocked bootloader and rooted my phone . And booted once in twrp to root using supersu zip. Can it is possible to make nandroid by temporary booting in recovery ?? .. Thnx really great therad:good::fingers-crossed:

mukulmagotra98 said:
Can I make a nandroid backup by temporaryly booting in twrp as I don't want to loose ota updates by flashing twrp recovery . I have already unlocked bootloader and rooted my phone . And booted once in twrp to root using supersu zip. Can it is possible to make nandroid by temporary booting in recovery ??
Click to expand...
Click to collapse
You're saying you have flashed SuperSu, this means that your /system partition is modified, so you will not be able to successfully install OTA's.
However, yes, you can take a Nandroid Backup by booting TWRP and restore it whenever your want using TWRP.

locking bootloader and unroot ??
Can I lock my bootloader by this command in fastboot" fastboot -i 0x2A96 oem lock"
And can revert root by full unroot option in supersu settings ... Will this be able to give me OTA updates as I am having cyanogen stock recovery .. but only changed my bootloader stuff..... OR I have to make a Nandroid backup and flash my stock rom from it and stock recovery too .. Till now I have not flashed any custom rom and recovery ...THNX IN ADVANCE
:angel::good:
Can hotboot removes ota updates............???

IMEI: null
having yuphoria with base band unknown..
is thee any way to recover it...
phone is on factory condition...
no unlocked boot loader, no root...no custom recovery...

Related

[GUIDE] Unlock/Root/Flash for Moto X Style/Pure

[SIZE=+3]Heisenberg's How-To Guide For Beginners[/SIZE]
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
[SIZE=+2]Moto X Pure[/SIZE]​
[SIZE=+1]Intro[/SIZE]
This thread will serve as a location for basic how-to guides for the Moto X Pure. I'm going to start off with a couple of the more obvious ones and go from there. If anyone has any suggestions for additions please feel free to let me know.
[size=+1]Prerequisites[/size]:
You'll need a working adb/fastboot environment on your PC to get through some of these guides. Go here to download the Android SDK, which will give you most updated version of adb and fastboot. Scroll to the bottom of the page and find Other Download Options>SDK Tools Only, and grab the right version for your OS. While it's downloading create a folder in C:\ called SDK (C:\SDK). Once you've downloaded the zip you can extract it into your C:\SDK folder. Navigate to C:\SDK\android-sdk-windows and open SDK Manager.exe. In SDK Manager you need to install the following packages:
Tools> Android SDK Tools, Android SDK Platform-tools
Extras> Android Support Library
Once you have installed those, inside C:\SDK you should see some new folders, one of them will be called platform-tools, within that folder you should see fastboot.exe and adb.exe. I'll refer to this as your fastboot folder/directory or working folder/directory during this guide. To make sure adb is correctly installed, open a command prompt from within your fastboot folder (hold shift + right click, select open command prompt here) and issue this command:
Code:
adb version
If it returns a version number for Android Debug Bridge then you're good to go.
You'll find Motorla drivers here, download it and install, then reboot your PC.
You can test adb by connecting your device to your PC while booted into Android (making sure that adb/usb debugging is enabled in Settings>Developer Options) with the screen unlocked and issuing this command:
Code:
adb devices
It should return your device serial number, if so, adb is working.
You can test fastboot by connecting your device to your PC while booted into fastboot mode (power + volume down) and issuing this command:
Code:
fastboot devices
It should return your device serial number, if so, fastboot is working.
By attempting any of the processes listed this thread you accept full responsibility for your actions. I will not be held responsible if your device stops working, catches on fire, or turns into a hipster and claims to have been modified before it was cool.
[SIZE=+1]Index[/SIZE]
How To Unlock Your Bootloader
How To Install A Custom Recovery On Your Device
How To Make A Nandroid Backup With TWRP Recovery
How To Root Your Stock Rom
How To Install A ROM with TWRP Recovery
How To Install A Custom Kernel With TWRP Recovery
How To Make Sure You Can Pretty Much Always Recover From An Accidentally Wiped System
[SIZE=+1]1. How To Unlock Your Bootloader[/SIZE]
Go into About Phone in Settings, click on Build Number 7 or 8 times until it says you have enabled Developer Options. Go back to Settings and enter the newly opened Developer Options section, scroll and click on the Enable OEM Unlock option.
Power off your phone then boot into fastboot mode (power + volume down).
Connect your phone to your PC via usb cable.
Open a command prompt from within your fastboot folder (navigate to where you have fastboot.exe located on your PC, shift + right click anywhere within that folder, select open command prompt here).
Check your fastboot connection by issuing this command:
Code:
fastboot devices
It should return your device serial number, if not you need to make sure your drivers are installed correctly.​
Once you've confirmed your fastboot connection issue this command:
Code:
fastboot oem get_unlock_data
It should return something like this:
Code:
(bootloader) 0A40040192024205#4C4D3556313230
(bootloader) 30373731363031303332323239#BD00
(bootloader) 8A672BA4746C2CE02328A2AC0C39F95
(bootloader) 1A3E5#1F53280002000000000000000
(bootloader) 0000000
Copy that code (with no spaces between the characters) and paste it somewhere for safekeeping, you'll use it in a minute.
Go to the Motorola bootloader unlocking page. You'll need to create an account with Motorola if you don't already have one. Once you're signed in you can scroll down to step 6 and paste the above code into the text field and hit the “can my device be unlocked” button.
Read the terms and conditions and accept them if you agree (you can't continue unless you accept).
Click the “request unlock key” button and an email with your unlock token will be sent to the email account that you signed up with.
Once you have retrieved the token from the email you can use it within the following command to unlock your bootloader:
Code:
fastboot oem unlock xxxxxxxxxx
(Replace the xxxxxxxx with your unique unlock token)​
Your bootloader is now unlocked!
Reboot with this command:
Code:
fastboot reboot
It's now safe to disconnect your usb cable.
Please note: this will erase all user data from your device, it is best to do this before you really start using the device and installing apps or putting data on the internal storage
[SIZE=+1]2. How To Install A Custom Recovery On Your Device[/SIZE]
Prerequisites: unlocked bootloader.
Download the recovery of your choice, here's TWRP.
Make sure you check the md5 to verify its integrity (where possible).
Place the file in your fastboot folder (this is where fastboot.exe is located on your PC).
Put the phone in fastboot mode and connect it to your PC via usb cable.
Open a command prompt from within your fastboot folder (shift + right click, select open command prompt here), and enter the following commands:
Code:
fastboot flash recovery <filename>.img
(Replace <filename> with the actual filename of the recovery, the recovery filename in the command will change depending on which recovery you're flashing)
Wait for the recovery to flash, it'll only take a few seconds, you'll get a finished message in your command prompt window once it's done.
It's now safe to disconnect your usb cable.
Don't reboot the phone normally, use the volume buttons to highlight recovery and press the power button to select it. This will stop the stock OS from patching it with the stock recovery in boot. Once you've booted into TWRP like this once, you can reboot normally.
[SIZE=+1]3. How To Make A Nandroid Backup With TWRP Recovery[/SIZE]
Prerequisites: unlocked bootloader, TWRP recovery.
A nandroid backup is a very important thing to have before installing any custom software on your device. It's basically a backup of your stock system that you can fall back on if anything goes wrong or if you just want your stock ROM back. You can also use the backup tool to create a backup of your favourite ROM set up exactly the way you like it. The backup you create can be easily restored using the restore tool in TWRP recovery.
All you need to do is enter TWRP recovery, select the backup option from the TWRP home screen, check the system/data/boot boxes, and swipe to backup. The process will take a few minutes.
[SIZE=+1]4. How To Root Your Stock Rom[/SIZE]
Prerequisites: unlocked bootloader, TWRP recovery.
Please note: this method is only valid for Lollipop, do not use this method on Marshmallow. You can find a systemless root method for Marshmallow here, big thanks to @ivcarlos!
Download SuperSU to your phone.
Boot into TWRP recovery.
Select the install option from the TWRP home screen.
Navigate to where you have SuperSU stored on your sd card and select it.
Swipe to install.
Once you've installed SuperSU you'll have an option to wipe cache/dalvik and an option to reboot system. Wipe the cache/dalvik, hit the back button, and hit the reboot system button. That's it.
[SIZE=+1]5. How To Install A ROM with TWRP Recovery[/SIZE]
Prerequisites: unlocked bootloader, TWRP recovery.
Installing a ROM is a pretty straight forward and easy process. Before you install anything you should make a nandroid backup (instructions above).
Download a ROM and appropriate Gapps package and place on your device.
Boot into your custom recovery.
Perform a full wipe.
Select the wipe option from the TWRP home screen.
Select advanced wipe.
Check the system, data, cache, and dalvik cache options.
Swipe to wipe.
Install the ROM.
Select the install option from the TWRP home screen.
Navigate to where you have the ROM zip stored on your sd card and select it.
Swipe to install.
Most ROMs will run an installer script at this point but some ROMs have what is called an Aroma Installer which allow you to choose some install options before the script runs.​
You will also need to install the appropriate gapps package directly after installing the ROM.
Once you've installed all necessary zips you'll have an option to wipe cache/dalvik and an option to reboot system. Wipe the cache/dalvik, hit the back button, and hit the reboot system button.
[SIZE=+1]6. How To Install A Custom Kernel With TWRP Recovery[/SIZE]
Prerequisites: unlocked bootloader, TWRP recovery.
A custom kernel can open up a new level of control over your device, such as overclocking/underclocking, undervolting, changing governors, changing I/O schedulers, adjusting colour calibrations, adjusting sound calibrations, and many other options.
Download a kernel that is compatible with your current ROM.
Check the md5 to verify its integrity.
Enter TWRP recovery.
Select the install option from the TWRP home screen.
Navigate to the kernel and select it.
Swipe to install.
You'll have an option to wipe cache/dalvik and an option to reboot system. Wipe the cache/dalvik, hit the back button, and hit the reboot system button.
Once your phone has booted up you can use a kernel tuning app to change governors, I/O scheduler, clock speed, and other options. Some of the popular kernel apps are Kernel Auditor, Trickster Mod, No Frills, Kernel Tuner, and many more.
[SIZE=+1]7. How To Make Sure You Can Pretty Much Always Recover From An Accidentally Wiped System[/SIZE]
Prerequisites: unlocked bootloader, TWRP recovery.
There may come a time when you accidentally wipe your OS while trying to perform a basic cache wipe in recovery. Don't laugh, it can happen to the best of us. The best way to insure yourself against being stuck in recovery is to keep a ROM zip or a TWRP/CWM backup (a nandroid backup) on your sd card at all times.
This solution seems like common sense but apparently there are quite a few people out there who don't store a ROM or backup on their phone. You might think it's easy to just mount the OTG storage and copy a ROM across to your phone from your PC (which is definitely an option), but there's always a chance that you won't be near your HDD or sd card at the time, or it won't recognise your phone properly. Basically you need to insure yourself against Murphy's law.
Donate To Me
This will be very helpful to many thanks for taking the time to put this together!
Sent from my XT1575 using Tapatalk
Thank you so much for taking the time on the guide. There will be many who will use it in the years to come! I'm just about at the verge of needing to root so I can get some insight into my battery life woes
This is much appreciated. All I did on my LG G2 was root as I did not see any roms that interested me since the bootloader is locked. I haven't used TWRP in a couple of years, so all this will help me clear the old cobwebs in my head.
Thank you so much for this! Exactly the kind of information I need. Can I trouble you to maybe add one more section to your guide: What to do when there's an OTA update from the manufacturer (Motorola)? I have concerns like:
- Would being rooted prevent OTA updates? (Assuming stock ROM).
- Would I need to "unroot" the phone to get the update? If so, how to unroot the the phone?
- Is the process to root the phone again after the the update the same, or could it possibly change?
- Would I need to wait until root is confirmed for the new version before attempting to re-root?
You said to "Make sure you check the md5 to verify its integrity".
What does this mean and how would I do this?
Thanks again for the guide. I went through this for my own unlock and root, so added a couple of minor things that will help noobs (and me!)
1. Add info on opening developer options, enabling ADB devices, and enable OEM unlock (in options screen)
2. Move this part to the start of the OEM unlock section : )
Please note: this will erase all user data from your device, it is best to do this before you really start using the device and installing apps or putting data on the internal storage
3. Add instructions to copy SuperSU zip file to internal storage and then flash in recovery
elitemeat said:
You said to "Make sure you check the md5 to verify its integrity".
What does this mean and how would I do this?
Click to expand...
Click to collapse
You can download an MD5 checker. They give you the MD5 checksum and you can compare when you run the utility. Just do a google search for md5 checker.
Oops
emailrob said:
Thanks again for the guide. I went through this for my own unlock and root, so added a couple of minor things that will help noobs (and me!)
1. Add info on opening developer options, enabling ADB devices, and enable OEM unlock (in options screen)
2. Move this part to the start of the OEM unlock section : )
Please note: this will erase all user data from your device, it is best to do this before you really start using the device and installing apps or putting data on the internal storage
3. Add instructions to copy SuperSU zip file to internal storage and then flash in recovery
Click to expand...
Click to collapse
Thanks for your suggestions.
1. This info has been added.
2. This section is in the same place in all of my guides, I see no problem (and have had no problems) with its location. Anyone following a guide should read it first before attempting it anyway.
3. I've added inductions to download the zip directly to the phone, less mess.
emailrob said:
Thanks again for the guide. I went through this for my own unlock and root, so added a couple of minor things that will help noobs (and me!)
1. Add info on opening developer options, enabling ADB devices, and enable OEM unlock (in options screen)
2. Move this part to the start of the OEM unlock section : )
Please note: this will erase all user data from your device, it is best to do this before you really start using the device and installing apps or putting data on the internal storage
3. Add instructions to copy SuperSU zip file to internal storage and then flash in recovery
Click to expand...
Click to collapse
This is already covered here:
http://forum.xda-developers.com/moto-x-style/help/root-to-updates-t3200588
Oaklands said:
You can download an MD5 checker. They give you the MD5 checksum and you can compare when you run the utility. Just do a google search for md5 checker.
Click to expand...
Click to collapse
If you're on Windows, I highly recommend this one, I've been using it for ages: http://code.kliu.org/hashcheck/
I flashed SU and it didn't give me root, any suggestions?
mxpxboi said:
I flashed SU and it didn't give me root, any suggestions?
Click to expand...
Click to collapse
Have you enabled root for apps (and adb if you wish) in Developer Options?
Heisenberg said:
Have you enabled root for apps (and adb if you wish) in Developer Options?
Click to expand...
Click to collapse
I don't see root for apps in Developer Options.
mxpxboi said:
I don't see root for apps in Developer Options.
Click to expand...
Click to collapse
Ok. I don't have this device yet (I have to jump through a few hoops to get it in my country), hopefully one of our other helpful members can lend a hand with your problem.
Heisenberg said:
Ok. I don't have this device yet (I have to jump through a few hoops to get it in my country), hopefully one of our other helpful members can lend a hand with your problem.
Click to expand...
Click to collapse
Well thanks for your help anyway. I followed the steps to a tee, and no root. So I was a little confused.
mxpxboi said:
Well thanks for your help anyway. I followed the steps to a tee, and no root. So I was a little confused.
Click to expand...
Click to collapse
It's a bit odd because this is definitely how to root this phone. Was the SuperSU flash successful in TWRP? Have you tried a second time?
Heisenberg said:
It's a bit odd because this is definitely how to root this phone. Was the SuperSU flash successful in TWRP? Have you tried a second time?
Click to expand...
Click to collapse
It did flash successfully, I flashed the one it linked to UPDATE-SuperSU-v1.94.zip, I'm going to try the newest one BETA-SuperSU-v2.49.zip. I'll report back.
---------- Post added at 10:57 PM ---------- Previous post was at 10:44 PM ----------
That worked, I would update your post with this link BETA-SuperSU-v2.49
Now if I can figure out how to remove the bootloader unlocked boot screen.
All root apps except Titanium Backup seem to be working for me.
mxpxboi said:
It did flash successfully, I flashed the one it linked to UPDATE-SuperSU-v1.94.zip, I'm going to try the newest one BETA-SuperSU-v2.49.zip. I'll report back.
---------- Post added at 10:57 PM ---------- Previous post was at 10:44 PM ----------
That worked, I would update your post with this link BETA-SuperSU-v2.49
Now if I can figure out how to remove the bootloader unlocked boot screen.
All root apps except Titanium Backup seem to be working for me.
Click to expand...
Click to collapse
Cool, I've updated the link. There's a thread discussing how to remove that boot screen in the q&a or general section. Not sure about your Titanium problem, if you have root access it should work.

[Acer Liquid Z330][How To] Unbrick, Unlock Bootloader, TWRP, Root [Acer T01]

Acer Liquid Z330 [Acer T01]
A- Unbrick
B- Unlock Bootloader
C- TWRP
D- Root
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Hi,
First i want to tell you my english is too bad .. but i will do my best..
This is the first Thread for this Phone..
_____________________________________________________________________________
A- Unbrick Acer Liquid Z330 (On Windows Only)
Step 1: Required Files ->
1- Converter (To make a System.img file) : Download
2- Stock Firmware :
For "WW_GEN1" : WW_GEN1
For "EMEA_BGCS" : EMEA_BGCS
(If links not working download from this link Acer Official)
3- Download & install Adb and Fastboot from this thread : ADB and Fastboot
4- Download & install Python 3.x (Required for Converter) : Python For Windows
Step 2: Prepare Files ->
1- Extract Converter folder.
2- Extract Stock firmware and copy "file_contexts" , "system.new.dat", "system.patch.dat", "system.transfer.list" from it to Converter Folder.
3- Launch "Converter.exe" and tap any key and wait...
4- If all done you got 2 file called : system_new.img and system.raw.img - we need just one file called system_new.img
5- Move "system_new.img" from Converter folder to your adb folder (for me is C:\\adb) and rename it to "system.img"
6- Back to Stock Firmware Folder and copy from it this files "boot.img", "misc.bin", "NON-HLOS.bin", "rpm.mbn", "sbl1.mbn" to your adb folder.
7- Check if you have on your adb folder all this files: "system.img", "boot.img", "misc.bin", "NON-HLOS.bin", "rpm.mbn", "sbl1.mbn"
Step 3: Enter to fastboot ->
1- Shutdown your device
2- Press Volume Up (Volume +) don't release it and press power key untill Acer logo appear and release power key only (keep your finger on volume up) until you enter to recovery mode
3.a- if you have stock recovery, just choose Fastboot mode
3.b- if you have TWRP choose Reboot and Bootloader
4- Connect the device to the computer through USB.
5- Now launch CMD on adb folder (press shift on keyboard and right click on your adb folder and choose "Open Command Window Here".
6- Verify your PC sees the device by typing :
Code:
fastboot devices
***** If you don't see your device serial number, and instead see "<waiting for device>", fastboot is not configured properly on your machine. *****
Step 4: Flash files ->
1- Execute this commands :
Code:
fastboot -w
Code:
fastboot erase cache
Code:
fastboot erase sbl1
Code:
fastboot flash sbl1 sbl1.mbn
Code:
fastboot erase rpm
Code:
fastboot flash rpm rpm.mbn
Code:
fastboot erase misc
Code:
fastboot flash misc misc.bin
Code:
fastboot erase modem
Code:
fastboot flash modem NON-HLOS.bin
Code:
fastboot erase system
Code:
fastboot flash system system.img
******** NOTE : flash system take about 5/10 mins.. Don't worry about "Max length message" just wait until you show you "Finished" *************
Code:
fastboot erase boot
Code:
fastboot flash boot boot.img
Code:
fastboot reboot
2- Normally after finished the phone take about 10mins on boot to system.. just wait
3-[JUST IN CASE] If your phone stuck on demo mode (show demo mode on bottom) please don't worry.. connect it to wifi and reboot.. Phone check the updates.. download and install all update and do a factory reset.
DONE !! Your phone back to life
Credits : The Converter Developed By "XN creation"
_____________________________________________________________________________
B- Unlock Bootloader
Step 1: Required Files ->
1- Download & install Adb and Fastboot from this thread : ADB and Fastboot
Step 2: Prepare Your device ->
1- Enable USB debugging on the device (How To)
2- Enable "OEM unlock" in the Developer options settings on the device.
3- Shutdown your device
4- Press Volume Up (Volume +) don't release it and press power key untill Acer logo appear and release power key only (keep your finger on volume up) until you enter to recovery mode
5- On stock recovery, just choose Fastboot mode
6- Connect the device to the computer through USB.
7- Now launch CMD on adb folder (press shift on keyboard and right click on your adb folder and choose "Open Command Window Here".
8- Verify your PC sees the device by typing :
Code:
fastboot devices
***** If you don't see your device serial number, and instead see "<waiting for device>", fastboot is not configured properly on your machine. *****
Step 3: Execute this commands
1-
Code:
fastboot oem unlock
2- Verify if your bootloader unlocked
Code:
fastboot oem device-info
***** If all ok show you "Device unlocked: true" ************
3- Reboot to system
Code:
fastboot reboot
_____________________________________________________________________________
C- Install TWRP Recovery
Step 1: Bootloader Unlocked Required !! If not follow my instructions on top
Step 2: Download TWRP.zip from this link (Download) and extract recovery.img and copy it to your adb folder.
Step 3: Enter your device to Fastboot Mode, Connect it to the computer through USB and launch CMD prompt from your adb folder.
Step 4: Type this command
Code:
fastboot flash recovery recovery.img
Code:
fastboot reboot
And DONE ! You have now TWRP !!
Credits : TWRP compiled from the original source by "Jemmini"
_____________________________________________________________________________
D- Root
Step 1: Bootloader Unlocked & TWRP Recovery Required !! Please Follow My Instructions on top (B & C instructions)
Step 2: Download latest Supersu from this thread (SuperSU v2.79) Choose "TWRP / FlashFire installable ZIP" one.
Step 3: Copy SuperSU zip file to your internal or external storage on your device.
Step 4: Reboot to TWRP recovery :
Press Volume Up (Volume +) don't release it and press power key untill Acer logo appear and release power key only (keep your finger on volume up) until you enter to recovery mode.
Step 5: On TWRP enter to INSTALL and Choose the superSU zip file and install it.
Step 6: Reboot.
Done... Your Device Rooted !!
_____________________________________________________________________________
Thats All !!
Sorry for my bad English...
I'm here if you have any questions..
the converting the system.new.dat files to system.img part failed (the program gave some error). Could you maybe provide the system.img you used?
Also, did your phone keep going off and on again during those 10 mins of first startup?
Mounir9912 said:
the converting the system.new.dat files to system.img part failed (the program gave some error). Could you maybe provide the system.img you used?
Also, did your phone keep going off and on again during those 10 mins of first startup?
Click to expand...
Click to collapse
System.img is a big file to upload about 2.6gb ... your are install Python or not ?
My phone stuck on startup around 15 mins .. but it's working..
Please try both official rom.. for me my phone working only with the second one..
Ysfzone said:
System.img is a big file to upload about 2.6gb ... your are install Python or not ?
My phone stuck on startup around 15 mins .. but it's working..
Please try both official rom.. for me my phone working only with the second one..
Click to expand...
Click to collapse
I've tried it with the other rom and it worked. Well, actually the converter didn't work. I actually had to use this:
https://github.com/xpirt/sdat2img
to create the system.img in ext4 format, then I had to use this:
http://forum.xda-developers.com/showthread.php?t=2749797
to create a flashable sparse chunk from the system.img.
the rest of the stuff like the boot, modem, cache etc flashed just fine. After flashing everything it booted perfectly.
Only problem is it's in demo mode and it requires the google account of the previous owner to log in before it unlocks. Since I'm only repairing it for someone I don't have that and can't get it out of demo mode for now.
failed remote:failed to erase partition
I get failed remote:failed to erase partition error...how can I fix this? please help (
sYntrax121 said:
I get failed remote:failed to erase partition error...how can I fix this? please help (
Click to expand...
Click to collapse
Where give you this problem ?
When I try to update the phone, it automatically boots into twrp recovery and after rebooting it says update failed. I think it's trying to update via the recovery but it can't because it isn't the original recovery. Do you have the stock (original) recovery?
Btw, where did you get the EMEA_BGCS firmware from?
Mounir9912 said:
When I try to update the phone, it automatically boots into twrp recovery and after rebooting it says update failed. I think it's trying to update via the recovery but it can't because it isn't the original recovery. Do you have the stock (original) recovery?
After flashing all files the phone back to stock recovery itself.. please use erase commands..
Btw, where did you get the EMEA_BGCS firmware from?
Click to expand...
Click to collapse
from here : https://www.acer.com/ac/fr/BE/content/support-product/6358?b=1
I did do all the erase commands, did you also erase the recovery though?
When you have the time, could you explain step by step what you did to convert the .dat files into the .img files? That's the only thing I did differently because it didn't work for me (yes python was installed)
Ysfzone said:
Where give you this problem ?
Click to expand...
Click to collapse
everytime I run "fastboot erase cache" command
sYntrax121 said:
everytime I run "fastboot erase cache" command
Click to expand...
Click to collapse
Just ignore it and jump to next command
Hello the 4th step does 'nt work for me, my old vista 32 say that there are some error. Is it possible to use an ither program to create the image file?
"4- If all done you got 2 file called : system_new.img and system.raw.img - we need just one file called system_new.img"
anicee said:
Hello the 4th step does 'nt work for me, my old vista 32 say that there are some error. Is it possible to use an ither program to create the image file?
"4- If all done you got 2 file called : system_new.img and system.raw.img - we need just one file called system_new.img"
Click to expand...
Click to collapse
if you have any other program use it.. why not
Ysfzone said:
if you have any other program use it.. why not
Click to expand...
Click to collapse
No unfornately I have' nt an other program to do that, but I have tried to install the original rom of acer and I have this message :
E: footer is wrong
E:signature verification failed
Installation aborted
I tchat with a technician of acer. He ask me to give the build number.... Yes but I can't give it that. My mobile is bricked! He advises to send my phone on SAV, but the phone is rooted!
Is there someone would be kind enough to give me the build number, please? :crying:
Or is it possible to get this number with adb?
Thank you for your answer and sorry for my English
На 4pda .ru есть тема "Обсуждение Acer Liquid Z330 Duo" страница 47, пост #930 в ней описан способ прошивки и сама прошивка 027 версии для разных языков. Телефон прошивается без проблем, проверено. Ссылку сайт не дает вставить. По этому ищите вручную.
Amazing work!
Windows 10 mobile --> android = Problems
Hello. I installed on the Z330 Windows 10 mobile. Help please go back to Android. Presumably change Disk Partitions. How is it to create one?
TWRP won't Install, it's always goes to stock Recovery instead TWRP. Help please thanks ~
I got the same result with #19, and my image version is Acer_AV0L0_T01_RV01RB10_TWN_GEN1.
The fastboot flash command seemed to pass, but I can not boot into TWRP. It still stayed in the old recovery mode.
BR.

Oukitel K6000 Plus Twrp, Root

Execution of this manual at your own risk !!!!
TWRP Install (Custom recovery to install the root files)
1. Install on pc adb and Fastboot driver
2. Install minimal adb and fastboot: https://forum.xda-developers.com/sho....php?t=2317790
3. On the smartphone in the settings, press the Developer mode (Settings-Over the phone-press 8 times on the build number)
4. Under Settings-Developer Options, allow usb-debugging and allow OEM-unlocking (For bootloader unlock)
5. Connect the smartphone to the pc. On the smartphone accepts the adb connection with the pc
6. Starts at Pc Minimal adb and Fastboot. In the command window "adb reboot bootloader" enter and press Enter (restart the smartphone into the bootloader)
7. WARNING: This step deletes all data from the smartphone, returns it to the factory setting and leads to the loss of the warranty !!!! In the command window, type "fastboot oem unlock" and press Enter (turns the boot loader on). The smartphone sits back and restarts. Repeat steps 3 to 6 after restarting
8 Download the Twrp images: https://mega.nz/#!siZhjIKa!OSfglS4Q8...PgKY9vaxthuilo copies the recovery-twrp31jemini.img file to the installation folder of minimal adb and fastboot
9. In the command window, type "fastboot flash recovery recovery-twrp31jemini.img" and press Enter. After successful flashen enter "fastboot reboot" in the command window, press Enter and press the Lauter key on the smartphone (Bring the smartphone to the boot menu)
10. 3 options appear on the smartphone: Recovery, Fastboot, Normal with the Lauter key you navigate to Recovery and press the volume down key to confirm (Smartphone starts now the Installed TWRP Recovery)
11. The recovery is set to Russian, so press the 3ten button from the top (Settings) on the right side, then click on the language icon in the upper right corner and select your preferred language.
Smartphone Roots:
1. Download the root files: https://mega.nz/#!wyQVSbwL!m2arVJbjA...4Nn8LVhDb_AB9Q
2. copy the .zip file to your smartphone, press Install in the recovery, select the copied .zip file and confirm the installation. After flashing the smartphone restart and voila ... your device is rooted
Updates: ( All files from 4pda.ru )
Twrp Flashable zip Update to rom Version V9: https://yadi.sk/d/z8dbqfOM3Jk6w3
Twrp Flashable zip Update to rom Version V18 ( supersu integrated ) : https://yadi.sk/d/jlNSmqYN3L4xHK
I Flashed it over V9 without Wiping and it works for me lika a charm
Flashable Viper4Android : https://drive.google.com/file/d/0B5u-Eac1xV2CYUxqRmxFVkltNms/view?usp=sharing
If you dont need root you can flash V18 with SPflashtool:https://drive.google.com/file/d/0B1kz3pYtoOExSFZ5WGJraFNUYUE/view
At this time there is no working twrp for V18
Custom Rom Doogee Shot (FreemeOS) : https://yadi.sk/d/YklP0V7b3LBFfV
Flash with TWRP at your own risk because i doesnt tried it at my own because V18 runs really smoooth
Expect some Bugs!!!
SPFlashtool FT V23:https://drive.google.com/file/d/0B1kz3pYtoOExemc0VkJtdXZRMVU/view
SPFlashtool FT V18:https://drive.google.com/file/d/0B1kz3pYtoOExSFZ5WGJraFNUYUE/view
I also tried Magisk systemless on V9 and for me it works ( Working modules : Viper4android,dolby atmos,) but on V18 i cant install the new Magisk Framework and get bootloop
If Someone had Problems with SPFlashtool this is how i did it:
Install Spflashtool to C:
Copy flash file to C:
start spflashtool as Admin
select scatter file
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
BTW Sorry for my bad English XD
@Cheese-ass
Greetings and welcome to xda. All posts on xda must be in English, I have translated this one for you but please use google translate for all future post's
Regards
Sawdoctor
Execution of this manual at your own risk !!!!
TWRP Install (Custom recovery to install the root files)
1. Install on pc adb and Fastboot driver
2. Install minimal adb and fastboot: https://forum.xda-developers.com/sho....php?t=2317790
3. On the smartphone in the settings, press the Developer mode (Settings-Over the phone-press 8 times on the build number)
4. Under Settings-Developer Options, allow usb-debugging and allow OEM-unlocking (For bootloader unlock)
5. Connect the smartphone to the pc. On the smartphone accepts the adb connection with the pc
6. Starts at Pc Minimal adb and Fastboot. In the command window "adb reboot bootloader" enter and press Enter (restart the smartphone into the bootloader)
7. WARNING: This step deletes all data from the smartphone, returns it to the factory setting and leads to the loss of the warranty !!!! In the command window, type "fastboot oem unlock" and press Enter (turns the boot loader on). The smartphone sits back and restarts. Repeat steps 3 to 6 after restarting
8 Download the Twrp images: https://mega.nz/#!siZhjIKa!OSfglS4Q8...PgKY9vaxthuilo copies the recovery-twrp31jemini.img file to the installation folder of minimal adb and fastboot
9. In the command window, type "fastboot flash recovery recovery-twrp31jemini.img" and press Enter. After successful flashen enter "fastboot reboot" in the command window, press Enter and press the Lauter key on the smartphone (Bring the smartphone to the boot menu)
10. 3 options appear on the smartphone: Recovery, Fastboot, Normal with the Lauter key you navigate to Recovery and press the volume down key to confirm (Smartphone starts now the Installed TWRP Recovery)
11. The recovery is set to Russian, so press the 3ten button from the top (Settings) on the right side, then click on the language icon in the upper right corner and select your preferred language.
Smartphone Roots:
1. Download the root files: https://mega.nz/#!wyQVSbwL!m2arVJbjA...4Nn8LVhDb_AB9Q
2. copy the .zip file to your smartphone, press Install in the recovery, select the copied .zip file and confirm the installation. After flashing the smartphone restart and voila ... your device is rooted
There is a way to connect a lan usb adapter?
fantastic work like a charm, but used recovery download from the german one and worked rooted oukitel k6000 plus yea
i follow every step ( iread many times before i do it)
But Phone dosent boot anymore
I got only this Message on Display :
Orange State
yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds
But Nothing happend
When i try to flash stock rom with splash tool i got da brom error with 60002
Its bricked???
Worked fine. I had to download files from other websites, but this procedure was good.
After reboot, su was working fine in /system. I wanted to reset the device completely, and typed "fastboot oem unlock"; I thought it would wipe data. Now, phone only boots on TWRP, and it seems like the /data partition is broken. TWRP can mount /system, but not /data. Either the device node is missig, or the partition is not formated properly.
Code:
# cat /etc/fstab
/dev/block/mmcblk0p6 /nvdata ext4 rw 0 0
/dev/block/mmcblk0p8 /protect_f ext4 rw 0 0
/dev/block/mmcblk0p9 /protect_s ext4 rw 0 0
/dev/block/mmcblk0p26 /system ext4 rw 0 0
/dev/block/mmcblk0p27 /cache ext4 rw 0 0
/dev/block/dm-0 /data ext4 rw 0 0
/external_sd auto rw 0 0
/usbotg auto rw 0 0
Losetup-a gives nothing.
I tried all possible commands (adb reboot to everything), and press volume up or down ... always get back in TWRP. Can not even reach the factory menu (the one where there are tests).
After reformating /data i can reboot to bootloader (fastboot), but still not /system.
Stock ROM was looking fine; I would like to be able to keep it. I would like to avoid flashing to an other ROM.
In short, I have TWRP and flashboot, but /system launches TWRP.
I don't know how to get a working system. SPFlashTool does not seem to work with TWRP installed. TWRP does not like OUKITEL_K6000_Plus_V6.0_20170519.rar. I can't find any ZIP ROM for TWRP. And when I try individual .img files from the RAR, TWRP can install them, but it does notproduce a working phone.
I fear something could be wrong with the partition table, or at least /data. /system contains many files and this looks good.
---------- Post added at 01:30 PM ---------- Previous post was at 12:40 PM ----------
How I fixed it:
fastboot flash boot /tmp/OUKITEL_K6000_Plus_V6.0_20170519/recovery-verified.img (EDIT: this MUST be wrong, should be fastboot flash recovery /tmp/OUKITEL_K6000_Plus_V6.0_20170519/recovery-verified.img or fastboot flash boot /tmp/OUKITEL_K6000_Plus_V6.0_20170519/boot-verified.img )
then, perform again https://fvknl.pro/k6000-plus-v6-0-upgrade/
and now I have a working phone.
* Can't apply Android updates because of TWRP+SuperSU ?
Now that my phone works, and is rooted (i use the stock ROM version 6), may 19th, the system is telling me there are system updates to do. I have downloaded them (200MB), but after reboot, update fails, for obvious reasons: the update is designed to be installed by the stock recovery firmware; and that partition is overwritten by TWRP.
I was given a tip to work around this (wherer the img file is taken from the .rar archive of the stock ROM):
# fastboot boot /tmp/recovery-verified.img
and it worked: fastboot uploaded the recovery image to the phone, ran it, and that recovery firmware started to apply the update.
Started ... but failed before half of it ... PROBABLY because /system was HEAVILY modified while I asked TWRP to install UPDATE-SuperSU-v2.82-20170528234214.zip (read the installation log of SuperSU ... it alters many things).
How can I apply my android updates without erasing the whole phone each time I want to apply them ?
A: how to get the installation log, to see the failure point, and fix it manually
or
B: install the update manually without running the recovery, but extract the update file, and manually copy the new files at due place, one by one
or
C: how to undo installation of SuperSU, so that /system is in a state where the update can be applied.
I want to do this without erasing /data, or /system. I had this issue on my previous phone; since december 2014 I could not apply any Android update; so my phone is stuck to Android 4 from december 2014. There have been many changes and updates during 2015 and I could not apply them. After installing su, i had been able to perform two Android updates; updates broke after installing Xposed. I do not want my new K6000 to have the same issue; I want to find a way to apply updates. And I would like to keep the stock flavour because there are many features I would like to use (don't want to install misc ROMs).
Xposed for oukitel 6000plus root
Hi I have an oukitel 6000plus root. I can not find the way to install xposed. You have succeeded in installing it successfully? Send me my email address app and zip to use. Thanks Fabio
no xposed for k6000 plus
patpix75 said:
Hi I have an oukitel 6000plus root. I can not find the way to install xposed. You have succeeded in installing it successfully? Send me my email address app and zip to use. Thanks Fabio
Click to expand...
Click to collapse
sorry latest xposed is for sdk 25 and the latest firmware for this device is android 7.0 (Sdk 24)
patpix75 said:
Hi I have an oukitel 6000plus root. I can not find the way to install xposed. You have succeeded in installing it successfully? Send me my email address app and zip to use. Thanks Fabio
Click to expand...
Click to collapse
I have tried many random things; I forgot the details of it. The versions are not a problem; there are links around to download old installers. Even if latest Xposed is for Android 25, archives will let you download v24.
It also depends when you rooted your phone, and which updates you did on your ROM before rooting. Depends if you are using ROM v6, v9, or v18 ...
Also, even if Xposed is installed, it's not working properly; in particular, I wanted Xposed to NotifyClean, and this plugin could not be installed on the Xposed I have (download goes fine, but plugin complains I need reboot to activate it). So, in short, Xposed is useless for me for now. Some other plugins have installed correctly (Taskbar).
The Xposed I have NOW is version 87 by PurifyOS. ATM, Android API 24.
But I said I tried many random things, so, maybe having tried to installed other variations of Xposed by other people was important to have this one installed. I remember that at some point, trying to install this one (purify) failed, and then, worked later ... forgot why.
Error
When you try to upload a TWRP, a message pops up:
"error: cannot load 'recovery-twrp31jemini.img'"
Bootloader should be unlocked. I see a buzz when switching on "yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds"
Phone has a ROM v18
Application procedure on W10.
Does anyone find any solution?
You don't need to burn TWRP in FLASH to be able to use it. You just need to load and run it, this way:
fastboot boot recovery_TWRP-3.1.0.img
This way, if you have backup your whole phone, or downloaded and extracted a ROM, you can boot a stock recovery image:
fastboot boot /tmp/recovery-verified.img
According to your name jemini ... I thjink you have downlaoded the wrong TWRP. Boot and flash may fail if you grabbed a file for an other phone.
This should be ROM independant.
Since I rarely use TWRP, I now keep the stock recovery, and run TWRP from fastboot only when I need it; this way, stock recovery is available for Android updates.
Do you have links to ROM v18, so that I can download and install it directly, instead of having to burn v6, then update to v9 and v18 via update process ? I have issues with updates, and would like to flash directly using v18; but could not find a download link.
I got the phone today and unlocked it for root and everything.
After
Code:
fastboot oem unlock
the following showed up:
Code:
...
(bootloader) Start unlock flow
OKAY [ 14.791s]
finished. total time: 14.792s
Problem is now:
Orange state
Your device has been unlocked and can't be trust
Your device will boot in 5 seconds.
But it's not booting, just stuck at this screen.
Any help very much appreciated!
EDIT:
I was on V23 ROM which came per OTA.
EDIT-2:
I was able to flash it back to V23 with flashtool, but no root. Bootloader seems to be unlocked, the message still appears.
rom
"Custom Rom Doogee Shot (FreemeOS) :
Flash with TWRP at your own risk because i doesnt tried it at my own because V18 runs really smoooth
Expect some Bugs!!!""""
What do you say that this rom picks up on the oukitel k6000 plus ??
I need someone to help me my k6000 plus did not call any more after this procedure.
when I install the rom stock by flash sp this error appears
https://drive.google.com/file/d/0ByEkRDgYmbWtOXdpbngtcGJxQk0/view?usp=sharing
What do you want to do?
Flash the Stock ROM back with flashtool?
You should switch to "Download Only" and not "Firmware Upgrade".
Also the Download Agent was different when I flashed it, it was DA_PL.bin.
cojo11 said:
i follow every step ( iread many times before i do it)
But Phone dosent boot anymore
I got only this Message on Display :
Orange State
yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds
But Nothing happend
When i try to flash stock rom with splash tool i got da brom error with 60002
Its bricked???
Click to expand...
Click to collapse
SIVAKUMAR: yes my mobile also same problem ...boot loop please help me oukitel k6000 plus MT6750T
------------- Orange State----------------
yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds:crying:
---------- Post added at 11:14 AM ---------- Previous post was at 11:11 AM ----------
sivakumarindia said:
SIVAKUMAR: yes my mobile also same problem ...MT6750T
------------- Orange State----------------
yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds:crying:
Click to expand...
Click to collapse
SIVAKUMAR: I THINK THIS ROM DIFFERENT MT6750 AND MT6750T:crying:
---------- Post added at 11:19 AM ---------- Previous post was at 11:14 AM ----------
rolex0815 said:
i got the phone today and unlocked it for root and everything.
After
Code:
fastboot oem unlock
the following showed up:
Code:
...
(bootloader) start unlock flow
okay [ 14.791s]
finished. Total time: 14.792s
problem is now:
orange state
your device has been unlocked and can't be trust
your device will boot in 5 seconds.
but it's not booting, just stuck at this screen.
Any help very much appreciated!
Edit:
I was on v23 rom which came per ota.
Edit-2:
I was able to flash it back to v23 with flashtool, but no root. Bootloader seems to be unlocked, the message still appears.
Click to expand...
Click to collapse
sivakumar: My mobile also same condition boot loop
I got the same and this help me :
For this case, leave SP tool setting as normal. Before connect USB to device:
1. Press and hold vol +
2. Connect USB to device and hold vol + button.
3. Just release the button until you see the download process start working.
with this solution i have Flaht the v6 rom
Boot loop try this Back to STOCK ROM
Cheese-ass said:
Execution of this manual at your own risk !!!!
TWRP Install (Custom recovery to install the root files)
1. Install on pc adb and Fastboot driver
2. Install minimal adb and fastboot: https://forum.xda-developers.com/sho....php?t=2317790
3. On the smartphone in the settings, press the Developer mode (Settings-Over the phone-press 8 times on the build number)
4. Under Settings-Developer Options, allow usb-debugging and allow OEM-unlocking (For bootloader unlock)
5. Connect the smartphone to the pc. On the smartphone accepts the adb connection with the pc
6. Starts at Pc Minimal adb and Fastboot. In the command window "adb reboot bootloader" enter and press Enter (restart the smartphone into the bootloader)
7. WARNING: This step deletes all data from the smartphone, returns it to the factory setting and leads to the loss of the warranty !!!! In the command window, type "fastboot oem unlock" and press Enter (turns the boot loader on). The smartphone sits back and restarts. Repeat steps 3 to 6 after restarting
8 Download the Twrp images: https://mega.nz/#!siZhjIKa!OSfglS4Q8...PgKY9vaxthuilo copies the recovery-twrp31jemini.img file to the installation folder of minimal adb and fastboot
9. In the command window, type "fastboot flash recovery recovery-twrp31jemini.img" and press Enter. After successful flashen enter "fastboot reboot" in the command window, press Enter and press the Lauter key on the smartphone (Bring the smartphone to the boot menu)
10. 3 options appear on the smartphone: Recovery, Fastboot, Normal with the Lauter key you navigate to Recovery and press the volume down key to confirm (Smartphone starts now the Installed TWRP Recovery)
11. The recovery is set to Russian, so press the 3ten button from the top (Settings) on the right side, then click on the language icon in the upper right corner and select your preferred language.
Smartphone Roots:
1. Download the root files: https://mega.nz/#!wyQVSbwL!m2arVJbjA...4Nn8LVhDb_AB9Q
2. copy the .zip file to your smartphone, press Install in the recovery, select the copied .zip file and confirm the installation. After flashing the smartphone restart and voila ... your device is rooted
Updates: ( All files from 4pda.ru )
Twrp Flashable zip Update to rom Version V9: https://yadi.sk/d/z8dbqfOM3Jk6w3
Twrp Flashable zip Update to rom Version V18 ( supersu integrated ) : https://yadi.sk/d/jlNSmqYN3L4xHK
I Flashed it over V9 without Wiping and it works for me lika a charm
Flashable Viper4Android : https://drive.google.com/file/d/0B5u-Eac1xV2CYUxqRmxFVkltNms/view?usp=sharing
If you dont need root you can flash V18 with SPflashtool:https://drive.google.com/file/d/0B1kz3pYtoOExSFZ5WGJraFNUYUE/view
At this time there is no working twrp for V18
Custom Rom Doogee Shot (FreemeOS) : https://yadi.sk/d/YklP0V7b3LBFfV
Flash with TWRP at your own risk because i doesnt tried it at my own because V18 runs really smoooth
Expect some Bugs!!!
SPFlashtool FT V23:https://drive.google.com/file/d/0B1kz3pYtoOExemc0VkJtdXZRMVU/view
SPFlashtool FT V18:https://drive.google.com/file/d/0B1kz3pYtoOExSFZ5WGJraFNUYUE/view
I also tried Magisk systemless on V9 and for me it works ( Working modules : Viper4android,dolby atmos,) but on V18 i cant install the new Magisk Framework and get bootloop
If Someone had Problems with SPFlashtool this is how i did it:
Install Spflashtool to C:
Copy flash file to C:
start spflashtool as Admin
select scatter file
BTW Sorry for my bad English XD
Click to expand...
Click to collapse
SIVAKUMAR INDIA: BOOT LOOP TRY THIS BACK TO STOCK ROM OUKITEL K6000 PLUS MT6750T
----------------------------ERROR BOOT LOOP -------------------------------------------
Orange State
yor device has been unlocked and cant ve trust
your device will reboot in 5 seconds
---------------------------TRY THIS STEPS RECOVERED STOCK ROM--------------------------
step1: Vcom+SPD+and+adb+driver+Installer+Windows+8_10
INSTALL DRIVERS
step2; SP_MDT_v3.1732 (DOWNLOAD )
EXTRACT AND RUN SP-MDT FLASH ,
SCAN ---------CONNECT MOBILE------FLASH SUCCEED----
step3: OUKITEL_K6000_Plus_V23_20170726
THIS LINK AVAILABLE OLD VERSION SP_MDT ONELY SEARCH AND DOWNLOAD NEW VERSION SP_MDT_v3.1732
LINKS: https://www.oukitel.com/latest-software-rom-for-all-oukitel-devices-48.html

Sony Xperia XZ Unlock bootloader, TWRP and ROOT.

For rooting Xperia XZ, we need recovery and for recovery flashing the bootloader must be unlocked.
PREREQUISITES:
1. ADB/FASTBOOT. View attachment 4715074
2. Drivers for Sony Xperia XZ. View attachment Xperia_XZ_driver.zip
3. Backup all your data, Apps, Contacts & everything you need.
4. Charge ur device above 60% to avoid any shutdown during the process
UNLOCKING BOOTLOADER
Unlock Bootloader: Opens the door to System files of your device. This allows you to flash images onto the main system partitions of the phone, after unlocking you will lose the DRM keys and phone's warranty will be void, it will also factory reset your device.(backup is recommended)
1. Open Dialer.
2. Dial *#*#7378423#*#*
3. Press service info than configuration.
4. Check if “Bootloader Unlock” is yes under Rooting status.[If not then your device can not be unlocked]
5. Check what android you are running on. Go to Settings -> About Phone -> Android Version. If you have 6.x.x then goto step 9 but if you have 7.x.x then you have to downgrade to Marshmallow.
6. Download and install FlashTool from its official website.
7. Install the drivers for fastmode and for your device in the driver folder of the FlashTool. [C:>FLASHTOOL>drivers]
8. Download ftf for your device using XpiriFirm and flash it using flashtool.
How to flash ftf?
9. Goto settings>about phone >developers option and ensure that OEM Unlock and USB Debugging is on.
10. Goto Xperia BLU page and Choose Xperia XZ at the bottom of the page.
11. Enter your Email and you will receive a link in your mail. Follow the steps given by Sony.
12. BE CAREFUL and, from now on, DON’T ENABLE the MyXperia. It could hard brick your phone.
Now your phone is unlocked
We will now go over some other fixes.
FLASH ANDRO PLUS KERNEL.
This kernel will help your device cope up with some battery issues and it also has some DRM Fixes. To install it, follow the steps :
1. Download the kernel version supported for your buildnumber.{AndroPlus}
2. Unzip the downloaded file and paste them into your fastboot/adb directory.
3. Now Boot into Bootloader mode by turning the device off and pressing volume up then plug in the USB.
4. Run the command prompt where you pasted the extracted zip . Do this by shift+right click and selecting Open command prompt here.
5. Enter the command "fastboot flash boot boot.img"(without double quotation)
6. Unplug and reboot your device
FLASH CUSTOM RECOVERY [TWRP]
A custom recovery is flashed onto the recovery partition of the device and overwrites the stock recovery that exists by default(XZ doesn't have stock recovery). Custom recoveries bring lots of functionality and allows you to perform wipes, install flashable zips, create full backups of your NAND (Nandroid backup), and various other features. An unlocked bootloader is needed to install a custom recovery.
This process will provide your device a custom recovery (TWRP) This can be used to flash root script, ROM and custom kernels at anytime without PC.
1. Download the TWRP image file.
2. Paste it in your Fastboot directory and rename it as recovery.img
3. Open cmd in the folder where you pasted recovery.img
4. Enter the command "fastboot flash recovery recovery.img"(without double quotation)
5. Reboot your device.
FLASHING MAGISK
Now the final step. To root your device you just need to flash the Magisk zip.
1. Download the zip.
2. Paste it in your device.
3. Now boot into recovery by turning off and press power+volume down at the same time and release the power key after vibration.
4. If TWRP is decrypted use this guide.
5. Now select install and navigate to the pasted zip, swipe for flash.
6. Reboot and check if the Magisk app is installed on your device.
________________________________________________________________________________________
-- If You Liked My Work--
-- Press the Thanks :good: Button --
​
Hi there.
May downgrade from N 7.1.1 to MM 6.0.1 causing lost DRM key ?
Thanks for your reply.
anhyeuviolet said:
Hi there.
May downgrade from N 7.1.1 to MM 6.0.1 causing lost DRM key ?
Thanks for your reply.
Click to expand...
Click to collapse
No downgrading not.
Drm keys r lost when u unlock bootloader
Have someone tried this guide????
awadnisar said:
No downgrading not.
Drm keys r lost when u unlock bootloader
Click to expand...
Click to collapse
This is my Screenshot from Security (inside Service test).
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Do you have any idea ?
My XZ looks different to another pics from Internet.
anhyeuviolet said:
This is my Screenshot from Security (inside Service test).
My XZ looks different to another pics from Internet.
Click to expand...
Click to collapse
It should ...
Looks normal for a new device.
Check
Service Info -> Configuration -> Bootloader unlock allowed
DHGE said:
It should ...
Looks normal for a new device.
Check
Service Info -> Configuration -> Bootloader unlock allowed
Click to expand...
Click to collapse
Checked and it show:
Bootloader unlock allowed: Yes.
Is it ok ?
anhyeuviolet said:
Is it ok ?
Click to expand...
Click to collapse
For me: yes
For the larger part of Society? Hmmm :silly:
read my [Guide]
DHGE said:
For me: yes
For the larger part of Society? Hmmm :silly:
read my [Guide]
Click to expand...
Click to collapse
Mailed to Sony Support. They said that Okay, too.
If XZ is not lagging as it right now, I will be more satisfied.
Quick Info After Unlocking Bootloader
awadnisar said:
For rooting Xperia xz (DUAL), we need recovery and for recovery flashing the bootloader must be unlocked.
CONTINUE AT YOUR OWN RISK
PREREQUISITES
1. ADB/FASTBOOT. Download https://drive.google.com/open?id=0B4IlcVrKbV2qT1V1T2RFQmxXNU0
2. Drivers for Sony Xperia XZ. Download https://drive.google.com/open?id=0B4IlcVrKbV2qeloxN01ESkZZTkU
3. Backup all your data, Apps, contacts & everything your need. we need to create backup in order to restore if anything goes wrong. [hopefully not]
4. Charge ur device above 60% to avoid any shutdown during the process
UNLOCKING BOOTLOADER
Unlock Bootloader: Opens the door to System files of your device. This allows you to flash images onto the main system partitions of the phone, after unlocking you will lose the DRM keys and phone's warranty will be void, it will also factory reset your device.(backup is recommended)
1. Open your dialer.
2. Dial *#*#7378423#*#*
3. Press service info than configuration.
4. Check if “Bootloader Unlock” is yes under Rooting status.[If not then your device can not be unlocked]
5. Check what android you are running on. Go to Settings -> About Phone -> Android Version. If you have 6.x.x then goto step 9 but if you have 7.x.x then you have to downgrade to Marshmallow.
6. Download and install FlashTool from its official website. http://www.flashtool.net/downloads.php
7. Install the drivers for fastmode and for your device in the driver folder of the FlashTool. [C:>FLASHTOOL>drivers]
8. Download ftf for your device, for [F8332/dual (https://drive.google.com/open?id=0B4IlcVrKbV2qSnBCRWxHLWY5RjQ)] and flash it using flashtool.
how to flash ftf https://forum.xda-developers.com/xperia-z/general/tutorial-how-to-flash-stock-roms-t2240614
9. Goto settings>about phone >developers option and ensure that OEM Unlock and USB Debugging is on.
10. Goto (https://developer.sonymobile.com/unlockbootloader/unlock-yourboot-loader/) and Choose Xperia XZ at the bottom of the page.
11. Enter your Email and you will receive a link in your mail. Follow the steps given by Sony.
12. BE CAREFUL and, from now on, DON’T ENABLE the MyXperia. It could hard brick your phone.
Now your phone is unlocked
We will now go over some other fixes.
FLASH ANDRO PLUS KERNEL.
This kernel will help your device cope up with some battery issues and it also has some DRM Fixes. To install it, follow the steps :
1. Download the kernel https://github.com/AndroPlus-org/android_kernel_sony_msm8996
2. Unzip the downloaded file and paste them into your fastboot/adb directory.
3. Now Boot into Bootloader mode by turning the device off and pressing volume up then plug in the USB.
4. Run the command prompt where you pasted the extracted zip . Do this by shift+right click and selecting Open command prompt here.
5. Enter the command "fastboot flash boot boot.img"(without double quotation)
6. Unplug and reboot your device
FLASH CUSTOM RECOVERY [TWRP]
A custom recovery is flashed onto the recovery partition of the device and overwrites the stock recovery that exists by default(XZ doesn't have stock recovery). Custom recoveries bring lots of functionality and allows you to perform wipes, install flashable zips, create full backups of your NAND (Nandroid backup), and various other features. An unlocked bootloader is needed to install a custom recovery.
This process will provide your device a custom recovery (TWRP) This can be used to flash root script, ROM and custom kernels at anytime without PC.
1. Download the TWRP image file https://drive.google.com/open?id=0B4IlcVrKbV2qWF9QaDhPd2hONmc
2. Paste it in your Fastboot directory and rename it as recovery.img
3. Open cmd in the folder where you pasted recovery.img
4. Enter the command "fastboot flash recovery recovery.img"(without double quotation)
5. Reboot your device.
FLASH SUPER SU ZIP
Now the final step. To root your device you just need to flash the super su zip.
1. Download the zip. https://drive.google.com/open?id=0B4IlcVrKbV2qOExRekY3M3ZPVG8
2. Paste it in your device.
3. Now boot into recovery by turning off and press power+volume down at the same time and release the power key after vibration.
4. Now select install and navigate to the pasted zip, swipe for flash.
5. Reboot and check if the Super SU app is installed on your device.
Click to expand...
Click to collapse
Good Tutorial As Iam Quite Familiar With This Rooting Method I Would Like To Highlight a Line
2. Paste it in your Fastboot directory and rename it as recovery.img
Because it Is Necessary Guys Without Renaming It , It Would Be Difficult to Enter in TWRP Recovery.
Rename To "recovery.img" is Must to Replace The Stock With This One.
and To Enter TWRP MENU After Everything Done.-----> Follow The Steps. <------
1 - Completely Power OFF The Phone , ( You Can Also Power off the Phone Anytime By Holding VOLUME UP + POWER BUTTON For 5 Secs Until There is 3 Vibration. )
2 - Hold Volume Down + Power Button , After That SONY Logo is Shown , Then Release ONLY THE POWER KEY and KEEP HOLDING the VOLUME DOWN Button.
3 - Wait Till TWRP Appears and Start Doing What You Like.
I Hope This Info Helps To Beginners.
CALL ME SUBH said:
Good Tutorial As Iam Quite Familiar With This Rooting Method I Would Like To Highlight a Line
2. Paste it in your Fastboot directory and rename it as recovery.img
Because it Is Necessary Guys Without Renaming It , It Would Be Difficult to Enter in TWRP Recovery.
Rename To "recovery.img" is Must to Replace The Stock With This One.
and To Enter TWRP MENU After Everything Done.-----> Follow The Steps. <------
1 - Completely Power OFF The Phone , ( You Can Also Power off the Phone Anytime By Holding VOLUME UP + POWER BUTTON For 5 Secs Until There is 3 Vibration. )
2 - Hold Volume Down + Power Button , After That SONY Logo is Shown , Then Release ONLY THE POWER KEY and KEEP HOLDING the VOLUME DOWN Button.
3 - Wait Till TWRP Appears and Start Doing What You Like.
I Hope This Info Helps To Beginners.
Click to expand...
Click to collapse
Thanks, when i was writing the post i took too long so i can't explain each and every step.
awadnisar said:
Thanks, when i was writing the post i took too long so i can't explain each and every step.
Click to expand...
Click to collapse
No Prob Bro
Do I still need to downgrade to MM when I'm running latest version of Oreo?
odarpsahc said:
Do I still need to downgrade to MM when I'm running latest version of Oreo?
Click to expand...
Click to collapse
If you want Unlock bootloader, as I know, Yes.
magisk/super su
hi, how to install magisk instead of super su in marshmallow, thanks
ciqbalz said:
hi, how to install magisk instead of super su in marshmallow, thanks
Click to expand...
Click to collapse
Just install latest magisk zip
odarpsahc said:
Do I still need to downgrade to MM when I'm running latest version of Oreo?
Click to expand...
Click to collapse
Yes coz for unlocking bootloader it's necessary
awadnisar said:
Yes coz for unlocking bootloader it's necessary
Click to expand...
Click to collapse
Hmm.. Not really, if he wishes to save and back up his DRM keys then yes it is nessecary to downgrade but if he's not worried about them he can do everything from oreo, unlocking the BL, installing a Kernel, TWRP ect.... But let me be clear to save your DRM Keys you need to downgrade..

[GUIDE]Universal Rom , Recovery And Kernel Flashing Guide For All Roms , Recoveries , Kernels

TWRP Flashing GUIDE (Linux-Only)
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Before following this guide, make sure you have followed the rom flashing guide below the post below or xiaomi.eu rom flashing guide.
If you have followed the flashing guide then you may continue.
Hello Amigos,
You can use this guide to install other recovery than TWRP also.(Other recoveries are listed in the guide itself)
Prerequisites:
Ubuntu/Debian/Ubuntu-Based Distros:
Open terminal
Type sudo apt install adb
Once that is installed.
Type sudo apt install fastboot.
Done.
Fedora:
Open terminal.
Type sudo dnf install android-tools.
Let it install and done.
OpenSUSE:
Download this official package from here according to your version :
https://software.opensuse.org/download.html?project=hardware&package=android-tools
(Use either one the add repository and install manually or grab binary packages directly options.)
Steps to install
Then go to your custom rom download thread and check the date of rom file (In this case derpfest) and choose the recovery version closest to the release date of your rom.
Download the latest platform-tools for linux from the Android developer site and extract the zip in an easily accessible folder
Download the recovery image file
Restart your device to fastboot mode
Method 1:
Using this adb command if you have USB debugging active on your device:
adb reboot bootloader
Method 2:
- Turn off your device
- After it has completely turned off, press and hold Vol - and the Power button at the same time until the word "FASTBOOT" comes out Method 3:- Turn off your device
- Press and hold Vol - button
- Connect the USB cable (previously connected to the PC) to the device and press and hold the button until the word "FASTBOOT" comes out
4. Connect your device to the PC
5. Open a terminal window in the folder where you extracted the binaries from the archive from step 1
Easy method: Open the folder, and open a terminal in the folder itself. Terminal will open a window directly in the folder location
6. Verify that your device is recognized by fastboot using this command:
fastboot devices
If your device has been detected (a serial number followed by the word fastboot), you can continue. Otherwise, check if the drivers are installed correctly, although if you used Mi Unlock and were able to unlock the device correctly on the PC you are using, you should not have problems with that.
7. Type this command in the terminal window, but don't press Enter yet, just type it and leave a space at the end:
fastboot flash recovery_
Don't write the "_". This only indicates the space you should leave at the end.
8. Now, drag the image file (yourrecoveryhere.img) to the terminal window and drop it above the window . This will make you copy your exact location for convenience.
fastboot flash recovery "home/user/location/to/your/file/yourrecoveryhere.img""
Quotation marks are only added if the entire location has spaces.
Otherwise, it is displayed without quotation marks.
9. Press Enter and wait a few seconds . Once it shows that it is successfully flashed hold the Vol Up + Power button , once the device restarts release the power button and keep the Vol Up button pressed , after a few seconds the TTWRP logo will show , release the Vol Up button now.
DONE! You've started perfectly in recovery
This guide applies to all recoveries:
NOTE:
If your rom mentions to use a specific recovery then use that instead
To flash shrp recovery you have to extract the .img from the zip file of the recovery that you downloaded ,then flash it in the same way as told above , make sure after booting in the recovery you flash the zip file of the shrp recovery from which you extracted the .img file in the recovery itself.
DO NOT USE ORANGE FOX RECOVERY ! It is deprecated and unmaintained so it wont be updated in future .
If mtp not working or device not getting detected as a portable device in any recovery then watch this guide here: GUIDE
Download Link
TWRP Download (If your rom mentions to use NSE TWRP then use the NSE TWRP with the closest android Version to your rom's android version or else if it doesn't specifically mention any twrp version then use the normal TWRP , the one without NSE in its name, with the closest android version to your rom's android version ):
https://www.pling.com/p/1346294/
SHRP Download:
https://sourceforge.net/projects/shrp/files/Beryllium/
Enjoy !
---------------------------------------------------------------------------------------------------------------------------
TWRP Flashing Guide (Windows-Only)
Before following this guide, make sure you have followed the rom flashing guide below the post below or xiaomi.eu rom flashing guide.
If you have followed the flashing guide then you may continue.
Hello Amigos,
You can use this guide to install other recovery than TWRP also.(Other recoveries are listed in the guide itself)
Steps to install
First of all unlock bootloader of your device . Search net for more info.
After this install adb drivers from here: https://forum.xda-developers.com/t/...reborn-v2-0-adb-fastboot-and-drivers.3854109/
Choose skip install for adb and install google drivers.
Connect your device in fastboot mode to your pc.
Go into device manager , right click on unrecognized android device , choose update drivers , let me pick from a list of drivers , select adb drivers , android bootloader interface and click install.
Then go to your custom rom download thread and check the date of rom file (In this case derpfest) and choose the recovery version closest to the release date of your rom.
Make sure you have the bootloader unlocked before you start. There are many guides on the internet for that.
Download the latest platform-tools from the Android developer site and extract the zip in an easily accessible folder
Download the recovery image file
Restart your device to fastboot mode
Method 1:
Using this adb command if you have USB debugging active on your device:
adb reboot bootloader
Method 2:
- Turn off your device
- After it has completely turned off, press and hold Vol - and the Power button at the same time until the word "FASTBOOT" comes out Method 3:- Turn off your device
- Press and hold Vol - button
- Connect the USB cable (previously connected to the PC) to the device and press and hold the button until the word "FASTBOOT" comes out
4. Connect your device to the PC
5. Open a cmd window in the folder where you extracted the binaries from the zip from step 1
Easy method: Open the folder, and without leaving it, type "cmd" in the address bar of the file explorer and press enter. Command promt will open a window directly in the folder location
6. Verify that your device is recognized by fastboot using this command:
fastboot devices
If your device has been detected (a serial number followed by the word fastboot), you can continue. Otherwise, check if the drivers are installed correctly, although if you used Mi Unlock and were able to unlock the device correctly on the PC you are using, you should not have problems with that.
7. Type this command in the cmd window, but don't press Enter yet, just type it and leave a space at the end:
fastboot flash recovery_
Don't write the "_". This only indicates the space you should leave at the end.
This is how it should look when you write it:
8. Now, drag the image file (yourrecoveryhere.img) to the command window and drop it above the window. This will make you copy your exact location for convenience.
- The result should be this:
Code:
fastboot flash recovery "C:\location\to\your\file\yourrecoveryhere.img"
Quotation marks are only added if the entire location has spaces.
Otherwise, it is displayed without quotation marks.
9. Press Enter and wait a few seconds . Once it shows that it is successfully flashed hold the Vol Up + Power button , once the device restarts release the power button and keep the Vol Up button pressed , after a few seconds the TWRP logo will show , release the Vol Up button now.
DONE! You've started perfectly in recovery
This guide applies to all recoveries:
NOTE:
If your rom mentions to use a specific recovery then use that instead
To flash shrp recovery you have to extract the .img from the zip file of the recovery that you downloaded ,then flash it in the same way as told above , make sure after booting in the recovery you flash the zip file of the shrp recovery from which you extracted the .img file in the recovery itself.
DO NOT USE ORANGE FOX RECOVERY ! It is deprecated and unmaintained so it wont be updated in future .
If mtp not working or device not getting detected as a portable device in any recovery then watch this guide here: GUIDE
Download Link
TWRP Download (If your rom mentions to use NSE TWRP then use the NSE TWRP with the closest android Version to your rom's android version or else if it doesn't specifically mention any twrp version then use the normal TWRP , the one without NSE in its name, with the closest android version to your rom's android version ):
Recovery For Poco F1
Team Win Recovery ProjectWht Works : * EVERYTHINGS *BUG : * You Tell Me *
www.pling.com
SHRP Download:
https://sourceforge.net/projects/shrp/files/Beryllium/
Enjoy !
---------------------------------------------------------------------------------------------------------------------------
ROM Flashing GUIDE (Windows-Only)
First of all unlock bootloader of your device . Search net for more info.
After this install adb drivers from here: https://forum.xda-developers.com/t/...reborn-v2-0-adb-fastboot-and-drivers.3854109/
Choose skip install for adb and install google drivers.
Connect your device in fastboot mode to your pc.
Go into device manager , right click on unrecognized android device , choose update drivers , let me pick from a list of drivers , select adb drivers and click install.
Then go to your custom rom download thread and check the date of rom file(In this case derpfest).
Check the date of file.
Then go to xiaomifirmwareupdater.com and select rom archive and select your device.
Then MIUI downloads page will appear. type fastboot in search and look for a MIUI global version released
as the same or very close to the Custom ROM date (in this case it is this)
Download the fastboot version according to the date.
Go into the stock rom folder and double click on flash_all.bat(all data will be lost) .
Or open cmd in the folder and type flash_all.bat in cmd and hit enter.(This method allows to look for errors)
A cmd window will popup with fastboot commands automatically and after complete flashing of rom will close automatically. (approx. 20-25 mins)
Let the device boot into MIUI.
Once it boots, power it off . Then press the vol down + power button until fastboot in orange letters appear.
Then follow the twrp flashing guide from here
Then flash the ROM according to the instructions.
NOTE:
Make sure to always extract and move the stock rom folder in root of C: drive (this helps avoid flashing errors)The path should look something like this:
C:\beryllium_global_images_YourVersionhere
Then flash the stock rom.
Clean Flashing a ROM:
I hope you have followed the entire guide above before doing this step.
Reboot to recovery.
Format data.
Flash ROM file.
Wipe Dalvik Cache.
Reboot and enjoy.
Everytime you do a clean flash, you must redo all the steps above.
If a rom does not include flashing instructions, it requires a clean flash.
If a rom mentions to wipe something in advanced wipe , then wipe ONLY that and nothing else.
If rom mentions clean flash and not wiping of anything else then dont be smart to wipe anything unecessary.
If your rom mentions to use a specific recovery then use that instead
Always flash magisk after the first boot of your rom
If mtp not working or device not getting detected as a portable device in any recovery then watch this guide here: GUIDE
Do not replace the recovery or try to update recovery that comes with roms. This can brick your device
Enjoy!
---------------------------------------------------------------------------------------------------------------------------
ROM Flashing GUIDE (Linux-Only)
Prerequisites:
Ubuntu/Debian/Ubuntu-Based Distros:
Open terminal
Type sudo apt install adb
Once that is installed.
Type sudo apt install fastboot.
Done.
Fedora:
Open terminal.
Type sudo dnf install android-tools.
Let it install and done.
OpenSUSE:
Download this official package from here according to your version :
https://software.opensuse.org/download.html?project=hardware&package=android-tools
(Use either one the add repository and install manually or grab binary packages directly options.)
First of all unlock bootloader of your device . Search net for more info.
Then go to your custom rom download thread and check the date of rom file(In this case derpfest).
Check the date of file.
Then go to xiaomifirmwareupdater.com and select rom archive and select your device.
Then MIUI downloads page will appear. type fastboot in search and look for a MIUI global version released
as the same or very close to the Custom ROM date (in this case it is this)
Download the fastboot version according to the date.
Go into the stock rom folder and right click in empty area then select open terminal here then type this command:
./flash_all.sh
A terminal window will popup with fastboot commands automatically and after complete flashing of rom will close automatically. (approx. 20-25 mins)
Let the device boot into MIUI.
Once it boots power it off . Then press the vol down + power button until fastboot in orange letters appear.
Then follow the twrp flashing guide from here
Then flash the ROM according to the instructions.
NOTE:
Make sure to always extract and move the stock rom folder in root of home directory (this helps avoid flashing errors)The path should look something like this:
home\beryllium_global_images_YourVersionhere
Then flash the stock rom.
Clean Flashing a ROM:
I hope you have followed the entire guide above before doing this step.
Reboot to recovery.
Format data.
Flash ROM file.
Wipe Dalvik Cache.
Reboot and enjoy.
Everytime you do a clean flash, you must redo all the steps above.
If a rom does not include flashing instructions, it requires a clean flash.
If a rom mentions to wipe something in advanced wipe , then wipe ONLY that and nothing else.
If rom mentions clean flash and not wiping of anything else then dont be smart to wipe anything unecessary.
If your rom mentions to use a specific recovery then use that instead
Always flash magisk after the first boot of your rom
If mtp not working or device not getting detected as a portable device in any recovery then watch this guide here: GUIDE
Do not replace the recovery or try to update recovery that comes with roms. This can brick your device.
Enjoy!
---------------------------------------------------------------------------------------------------------------------------
Kernel Flashing GUIDE:
Always Flash a custom kernel after the first boot of the device in a rom which was clean flashed.
Always take a backup of your rom's boot.img incase something goes wrong.
NGK Kernel:
Download the latest nse version (if your rom is nse rom)
Then store it somewhere in your internal storage
Boot to twrp
Flash NGK NSE kernel zip
Wipe Cache Dalvik
Reboot To Syste,
NOTE:
If your rom doesnt mention if it is a nse or se rom then you may download both nse and se versions of the kernel . Then boot into twrp and flash nse version as above . If your device gets bricked , bootlooping , restart to recovery or fastboot , Then boot into recovery again and flash se version as above . After this your problem should be fixed . Still if something goes wrong , boot into recovery and flash boot.img of your rom.
LawRun Kernel:
Download the kernel version according to this index:
10-11-12 in the name here mentions the android versions supported . Android Version supported in this version of kernel is android 10 ,11,12 or android q , android r and android s.
09 , P or Pie here in the name mentions android version supported . Android Version supported in this version of kernel is android 9 or android pie.
10 or Q in the name mentions android 10 is supported.
10-2-13 in the name here mentions that android 10 to android 13 roms are supported
Store the kernel zip somewhere in your internal storage
Boot into twrp
Flash LawRun Kernel Zip
Wipe Cache Dalvik
Reboot to System
If something goes wrong , boot into recovery and flash boot.img of your rom.
NOTE:
Do check the kernel version and description at the download page of the kernel to know whether it is overclocked or not.
Genos Kernel:
Download the kernel version according to this index:
If there is nothing in the name only R21 or Rxx or r17.1re or rXXre or r16.0_evol or rXX_evol or r11_evolution or rXX_evolution or r16.1_evo or rXX_evo (xx corresponding to the version of the kernel) then it supports MIUI , OOS (Oxygen OS) , AOSP (Custom Roms).
If there is r12_non_oos or rXX_non_oos in the name (xx corresponding to the version of the kernel) then it doesnt support OOS (Oxygen OS) and only supports MIUI,AOSP(Custom Roms)
If there is r12_oos or rXX_oos or r12_evol_oos or rXX_evol_oos in the name (xx corresponding to the version of the kernel) then it only supports OOS (Oxygen OS) and dosent support MIUI,AOSP(Custom Roms)
Store the kernel zip somewhere in your internal storage
Boot into twrp
Flash Genos Kernel Zip
Wipe Cache Dalvik
Reboot to System
If something goes wrong , boot into recovery and flash boot.img of your rom.
Enjoy !
---------------------------------------------------------------------------------------------------------------------------

Categories

Resources