Difference between revisions of "OS: Android - Flash TWRP pakai fastboot"

From OnnoWiki
Jump to navigation Jump to search
Line 54: Line 54:
  
 
  fastboot reboot
 
  fastboot reboot
ping 127.0.0.1 -n 20.5 >null
 
 
  adb reboot recovery
 
  adb reboot recovery
 
 
 
 
 
 
 
  
 
==Referensi==
 
==Referensi==
  
 
* https://longren.io/flash-twrp-img-file-from-ubuntu-using-fastboot/
 
* https://longren.io/flash-twrp-img-file-from-ubuntu-using-fastboot/

Revision as of 05:51, 26 January 2016

Sumber: https://longren.io/flash-twrp-img-file-from-ubuntu-using-fastboot/

Install adb & fastboot

sudo apt-get install android-tools-adb android-tools-fastboot


Untuk Nexus 4

Download

http://techerrata.com/browse/twrp2/mako

Set device agar masuk ke mode fastboot, cek

fastboot devices

Lakukan

adb reboot-bootloader
fastboot devices
fastboot flash recovery openrecovery-twrp-2.7.0.0-mako.img
fastboot reboot
ping 127.0.0.1 -n 20.5 >null
adb reboot recovery


Untuk IVO V5

Download

http://www.mediafire.com/download/hfgx7uhj3gjscdz/IVO+V5+Recovery+Flash+Tool.zip

Unzip

unzip IVO\ V5\ Recovery\ Flash\ Tool.zip

Pastikan IVO

  • Sudah di aktifkan mode developer
  • SUdah di aktifkan USB debug (di mode developer)

Jalankan

cd IVO\ V5\ Recovery\ Flash\ Tool
adb reboot-bootloader
fastboot flash recovery TWRP_RECOVERY
target reported max download size of 536870912 bytes
sending 'recovery' (9730 KB)...
OKAY [  0.315s]
writing 'recovery'...
OKAY [  0.830s]
finished. total time: 1.145s
fastboot reboot
adb reboot recovery

Referensi