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

From OnnoWiki
Jump to navigation Jump to search
(New page: 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== Down...)
 
 
(2 intermediate revisions by the same user not shown)
Line 18: Line 18:
 
Lakukan  
 
Lakukan  
 
 
 +
adb reboot-bootloader
 +
fastboot devices
 
  fastboot flash recovery openrecovery-twrp-2.7.0.0-mako.img
 
  fastboot flash recovery openrecovery-twrp-2.7.0.0-mako.img
 
+
fastboot reboot
 +
adb reboot recovery
  
 
==Untuk IVO V5==
 
==Untuk IVO V5==
Line 40: Line 43:
 
  adb reboot-bootloader
 
  adb reboot-bootloader
 
  fastboot flash recovery TWRP_RECOVERY
 
  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
 
  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/

Latest 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
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