Sedikit Info Seputar
How To Backup Recovery and Boot.img for Flashing Via Fastboot
Terbaru 2017
- Hay gaes kali ini team All About Android, kali ini akan membahas artikel dengan judul How To Backup Recovery and Boot.img for Flashing Via Fastboot, kami selaku Team All About Android telah mempersiapkan artikel ini untuk sobat sobat yang menyukai All About Android. semoga isi postingan tentang
Artikel Android,
Artikel fastboot,
Artikel recovery and boot backup, yang saya posting kali ini dapat dipahami dengan mudah serta memberi manfa'at bagi kalian semua, walaupun tidak sempurna setidaknya artikel kami memberi sedikit informasi kepada kalian semua. ok langsung simak aja sob
Judul:
Berbagi Info Seputar
How To Backup Recovery and Boot.img for Flashing Via Fastboot
Terbaru
link: How To Backup Recovery and Boot.img for Flashing Via Fastboot
Berbagi Artikel Tentang How To Backup Recovery and Boot.img for Flashing Via Fastboot Terbaru dan Terlengkap 2017
1. Connect the device to PC and launch cmd from your adb folder
2. Type the follow commands
adb shell
su
cat proc/mtdThis last command will list all the partitions of your device and their mtd block id. For instance:
dev: size erasesize name
mtd0: 000a0000 00020000 "misc"
mtd1: 00480000 00020000 "recovery"
mtd2: 00300000 00020000 "boot"
mtd3: 0fa00000 00020000 "system"
mtd4: 02800000 00020000 "cache"
mtd5: 093a0000 00020000 "userdata"
Take note of the recovery mtd id/number. The continue below: Type
dd if=/dev/mtd/mtd1 of=/sdcard/recovery.img bs=4096Replace mtd1 with the recovery mtd id of your device that is displayed after the cat proc/mtd command.
The recovery image will be dumped in your sdcard. Get it from there and flash via fastboot.
Note: Root access is required on the device you're dumping from.
If you have questions, please ask in the comments section.