简体   繁体   English

android中fastboot和recoverymode的区别

[英]Difference between fastboot and recoverymode in android

I just wants to know the difference between fastboot and recovery modes in android device.我只想知道 android 设备中 fastboot 和 recovery 模式之间的区别。

So far my understanding I thought that到目前为止我的理解我认为

Recovery mode : contains a small Linux image, having some simple User interface with few recovery options.恢复模式:包含一个小的 Linux 映像,具有一些简单的用户界面和很少的恢复选项。

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 .请您确认我的理解是否正确,请告诉我何时使用哪一个或这两个的组合。

  • Recovery mode is small linux operating system where you can factory reset your deivce or update your device with vendors images.恢复模式是小型 linux 操作系统,您可以在其中恢复出厂设置或使用供应商映像更新您的设备。

  • Fastboot it's a tool which comes with the android sdk and you can use it to re-flash partitions of your device. Fastboot 它是 android sdk 附带的一个工具,您可以使用它来重新刷新设备的分区。 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.由于 fastboot 在 android 之前启动,即使未安装 android,您也可以将其用作恢复模式的替代方案,以防恢复模式分区损坏。 Every phone usually has fastboot,but some vendors has choose to replace fastboot with their tool.每部手机通常都有 fastboot,但一些供应商选择用他们的工具替换 fastboot。 Like samsung, instead of fastboot it has Odin.像三星一样,它有 Odin 而不是 fastboot。

Now, fastboot is more useful because you can use it as a recovery method when you don't have another recovery method, a现在,fastboot 更有用,因为当您没有其他恢复方法时,您可以将其用作一种恢复方法,

Android device has 3 important partitions - Boot loader, Recovery, Android ROM. Android 设备有 3 个重要分区 - 引导加载程序、恢复、Android ROM。 Boot loader loads first and decides the next partition to be loaded which is usually the Android ROM.引导加载程序首先加载并决定下一个要加载的分区,通常是 Android ROM。 Recovery is the mode that is used by device to install updates to Android ROM partition.恢复是设备用于将更新安装到 Android ROM 分区的模式。 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.另一方面,Fastboot 是一种协议,可用于通过 USB 从计算机连接到设备并向设备的分区发布更新。 For example, while I'm in fastboot I can update by recovery partition.例如,当我在 fastboot 中时,我可以通过恢复分区进行更新。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM