Sedikit Info Seputar
How to backup/extract your android phone firmware
Terbaru 2017
- Hay gaes kali ini team All About Android, kali ini akan membahas artikel dengan judul How to backup/extract your android phone firmware, kami selaku Team All About Android telah mempersiapkan artikel ini untuk sobat sobat yang menyukai All About Android. semoga isi postingan tentang
Artikel adb,
Artikel Android,
Artikel backup,
Artikel boot.img,
Artikel how to,
Artikel recovery,
Artikel ROM,
Artikel stock firmware,
Artikel system.img,
Artikel xda, 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/extract your android phone firmware
Terbaru
link: How to backup/extract your android phone firmware
Berbagi Artikel Tentang How to backup/extract your android phone firmware Terbaru dan Terlengkap 2017
Recently, someone asked me how he could backup his android phone's Rom manually via cmd; it should be all over the internet I said to myself.
Today, I'm posting it here again for easy access.
There are too many reasons why you would want to backup your Android device. It could be for backup purpose, just incase something goes wrong, or to restore in another compatible device, for further modification/development, and on.
To go about this.
- Make sure ADB is properly installed
- Ensure to install your device drivers
- Ensure your device has root access
- You'll need a functional brain too ;)
Now, to the real deal!
Run CMD and point to the folder where you have your ADB files (Windows: Right-click on the folder while holding SHIFT button, select Open command window here)
Connect your device via a usb cable
Type the following commands:
adb devices (click enter)
adb shell (click enter)
su (click enter)
cat /proc/mtd
The above command will list your device's partition.
Example:
dev: size erasesize name
mtd0: 00040000 00020000 "misc"
mtd1: 00500000 00020000 "recovery"
mtd2: 00280000 00020000 "boot"
mtd3: 04380000 00020000 "system"
mtd4: 04380000 00020000 "cache"
mtd5: 04ac0000 00020000 "userdata"
Take note of the partitions you wish to backup. For instance, if it's system partition:
Type:
cat /dev/mtd/mtd3 > /sdcard/system.img
It will be backed up to your SDcard root as system.img.
The important partitions to backup include: boot, recovery, and system. This will give your device a clean Rom if restored; with your installed apps intact but without any data.
This is where the functional brain comes to play... ;)
Please leave your comments below if you experience any issues..