HOW TO INSTALL TWRP RECOVERY


If you want to root, flash a custom ROM, or otherwise dig into the innards of your Android phone, a custom recovery like TWRP is a great way to do so. Here’s how to flash it on your phone.

How to Install TWRP Recovery



Install ADB and Fastboot drivers

Note: you don’t need to root your device to install TWRP, but you will need to unlock the bootloader, which will erase all the content on your device. Also the method for unlocking the bootloader is different for each device, so your mileage will vary.

Let’s start by downloading TWRP for your device. You can find a list of devices that are currently supported by following the link.

TWRP Download


Unlock Developer Options, Enable USB Debugging, and Enable OEM Unlocking

You will need to unlock the developer options on your phone. To do this, go to “About” phone in the Settings app of your phone. You’ll need to tap on “Build number” seven times before being granted access to the developer options.

To enable USB debugging, navigate to Settings > Developer Options > USB Debugging

Install via ADB

  • Open the folder where your TWRP Recovery .img file is saved.
  • Then open a CMD window inside that folder. To do that, Shift + Right click on any empty white space inside the folder and then select
  • Open command window here.


  • Connect your Android device to the PC. Type the following into the command window to boot your device into bootloader/fastboot mode:

adb reboot bootloader

└ If your asks for permission to “Allow USB debugging”, tap OK.

Once your device boots into bootloader mode, type this into the command line.

fastboot flash recovery twrp-5.1.x.x-xxx.img

└ Here modify twrp.img with the name of your TWRP recovery .img file.

Once TWRP is successfully flashed on your device, type this final command to reboot your device.

fastboot reboot

That’s all. TWRP recovery should be installed on your device now. To boot into the freshly installed recovery, simply issue the adb reboot recovery command from PC command line when your device boots into the system.

Comments