Diferencia entre revisiones de «Usuario:Juanda/android/fastboot»

De WikiEducator
Saltar a: navegación, buscar
(A brief introduction to fastboot)
Línea 13: Línea 13:
 
*Fastboot también se usa para desbloquear el bootloader de los dispositovos Google Nexus.
 
*Fastboot también se usa para desbloquear el bootloader de los dispositovos Google Nexus.
 
*No todos los dispositivos soportan fastboot.
 
*No todos los dispositivos soportan fastboot.
 +
*El comando fastboot se debe ejecutar siempre con privilegios de root.
 
*Los comandos de fastboot solo funcionan si el dispositivo está en modo fastboot.
 
*Los comandos de fastboot solo funcionan si el dispositivo está en modo fastboot.
 +
  
 
[http://www.htcmania.com/mediawiki/index.php/C%C3%B3mo_utilizar_FastBoot Tutorial sobre FastBoot].
 
[http://www.htcmania.com/mediawiki/index.php/C%C3%B3mo_utilizar_FastBoot Tutorial sobre FastBoot].
Línea 26: Línea 28:
  
 
</source>
 
</source>
 
== Getting fastboot ==
 
 
See here for [http://developer.android.com/sdk/index.html instructions on downloading the latest Android SDK], and thus fastboot, for your computer.
 
 
{{tip|tip=On some GNU/Linux distributions, like Debian Sid, you can install [http://packages.debian.org/search?keywords=android-tools-fastboot fastboot] just with this command:
 
<code>sudo apt-get install android-tools-fastboot</code>
 
Or on Fedora, you can install [https://apps.fedoraproject.org/packages/android-tools android-tools] package (which contains fastboot) with this command:
 
<code>sudo yum install android-tools</code>}}
 
 
== Troubleshooting fastboot ==
 
{{Paths}}
 
===<waiting for device> errors===
 
If you see <waiting for device> at any point when executing fastboot command, the PC is not configured to use fastboot properly. Most typically, this is because you are not running fastboot with elevated privileges.
 
 
====Linux/OSX====
 
Run fastboot as root or with sudo.
 
 
====Windows====
 
Run fastboot as an Administrator.
 
 
 
Make sure the output of <code>fastboot devices</code> returns your device serial number or you will never get past this error message.
 
 
{{Recovery_install_fastboot|device_name=device}}
 

Revisión de 11:21 22 abr 2013


¿Qué es FastBoot?

  • fastboot es una pequeña herramienta que viene con el Android SDK y puede ser usada para flashear particiones del dispositivo.
  • Es un modo de recuperación alternativo al de recovery.
  • El modo FastBoot arranca antes de cargar el SO Android (arrance incluso si Android no está instalado).
  • Es útil para hacer un update del firmware sin tener que usar el modo recovery.
  • Es el modo preferido para instalar la imagen de recovery en muchos dispositivos.
  • Fastboot también se usa para desbloquear el bootloader de los dispositovos Google Nexus.
  • No todos los dispositivos soportan fastboot.
  • El comando fastboot se debe ejecutar siempre con privilegios de root.
  • Los comandos de fastboot solo funcionan si el dispositivo está en modo fastboot.


Tutorial sobre FastBoot.

juanda@juanda-PC:~/Android/sdk/platform-tools$ sudo ./fastboot devices
01a927828f90ccde	fastboot
juanda@juanda-PC:~/Android/sdk/platform-tools$ sudo ./fastboot oem unlock
...
FAILED (remote: Already Unlocked)
finished. total time: 0.001s
juanda@juanda-PC:~/Android/sdk/platform-tools$