Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between fastboot and recoverymode in android

I just wants to know the difference between fastboot and recovery modes in android device.

So far my understanding I thought that

Recovery mode : contains a small Linux image, having some simple User interface with few recovery options.

fastboot mode : Once the phone is into fastboot mode we can install recovery images.

can you please confirm whether my understanding is correct or not and please tell me when to use which one or combination of these two .

like image 600
suresh n Avatar asked Jul 01 '15 09:07

suresh n


Video Answer


2 Answers

  • Recovery mode is small linux operating system where you can factory reset your deivce or update your device with vendors images.

  • Fastboot it's a tool which comes with the android sdk and you can use it to re-flash partitions of your device. Because fastboot starts before android and even when android isn't installed you can use it as an alternative of recovery mode in case recovery mode partition is corrupted. Every phone usually has fastboot,but some vendors has choose to replace fastboot with their tool. Like samsung, instead of fastboot it has Odin.

Now, fastboot is more useful because you can use it as a recovery method when you don't have another recovery method, a

like image 126
root-expert Avatar answered Sep 30 '22 17:09

root-expert


Android device has 3 important partitions - Boot loader, Recovery, Android ROM. Boot loader loads first and decides the next partition to be loaded which is usually the Android ROM. Recovery is the mode that is used by device to install updates to Android ROM partition. It is also used while factory resetting the phone. The recovery that comes by default usually has less options and that is why custom recovery modules are available.

Fastboot on the other hand is a protocol that can be used to connect to the device from a computer over USB and issue updates to the partitions of the device. For example, while I'm in fastboot I can update by recovery partition.

like image 30
Rohit T Avatar answered Sep 30 '22 17:09

Rohit T