Using Fastboot step by step guides

Fastboot is available on most Android devices, excluding Samsung where it is not implemented.

For a Galaxy device you need to use the Odin tool to flash a new ROM or Recovery (the unofficial site samsung-updates.com normally has the latest version available to download).

On Nexus and HTC devices Fastboot is an invaluable tool, and can be a phone saver.

1. Get the SDK
Download the Android SDK from http:// developer.android.com/sdk . There are versions for Windows, Mac and Linux so your desktop platform of choice is supported. There’s no need to install the SDK since we’re not using it to develop apps, we simply want to use one of its associated tools.

2. Boot device to Fastboot
Now boot your device into Fastboot. This is done using the key combination used to boot into Recovery – power and volume down on a Nexus 7, for example. Don’t boot to Recovery, though. Fastboot is either the screen prior to Recovery or available through a separate menu.

3. Locate Fastboot on desktop
Return to the desktop and locate the Android Software Development Kit folder. We will be using the Fastboot tool which is stored in the platformtools sub-folder of the Android SDK. To use it fi rst, simply open a command line on Windows or Terminal on Mac.

4. Check your commands
Double clicking the Fastboot icon in the platform-tools folder will also give you a list of the various commands you can now use. Once you’re more experienced using the tool you will be able to use multiple commands at the same time, adding the various options to confi gure more powerful functions.

5. Change directory
Now change the directory to that of the platform-tools folder in the Android SDK. All you need to do this is type the command cd followed by the full path to the platform-tools folder. For example, cd /Users/name/Desktop/ android-sdk-mac_x86/platform-tools. That will change the directory.

6. Check fastboot mode
Connect your device – already in Fastboot – to your desktop computer via USB. Check that the device is recognised by typing fastboot devices in the command line. On Mac and Linux all Fastboot commands need to be preceded by ./ (so type ./fastboot devices). Your connected device’s serial number should now be listed.

7. How to wipe
In some instances if data or other files are causing problems with your Android device you may need to wipe it completely in order to be able to get it working again. Luckily, it’s a really straightforward procedure. To do this type fastboot –w in the terminal window and your device’s storage will be cleared.

8. Flash a Recovery
To flash a new custom Recovery, fi rst download the recovery image (for example, from www.clockworkmod.com) and then place it in the platform-tools folder for easy access. Begin fl ashing the Recovery with the command: fastboot fl ash recovery [recoveryimage.img]. Do not disconnect the device while it is in progress.

9. Flash a ROM
Once you’ve fl ashed a custom Recovery you can use that to fl ash a ROM. Alternatively you can fl ash through Fastboot. Download the ROM and place it in the platform-tools folder. To start fl ashing, type fastboot update [romfi le.zip]. This will take a few minutes to complete, so do not touch the device while it is working.

10. Reboot
Your device may reboot once the fl ashing process is completed, but if not, you can also reboot via our friend Fastboot. Simply type fastboot reboot and the device will restart. Remember that after fl ashing a new ROM the first boot may take longer – give it a good ten minutes to allow it to do its thing.

Prev...
Recover a Bricked Device Using Fastboot