Most used ADB and Fastboot Commands for Android

Every noob to Android has tried to stay away from ADB (or terminal on Mac) for as long as possible. Yes, it sounds too techy at times and in buy to reach it, there are preliminary steps which make us tense of reaching it in the first place. but depend on me, once you are there, rest is a piece of cake. and as long as you are avoiding it, you are losing out on way too much. Go through this post, it must introduce you to the process, if not convince you to start altogether.

The ADB mode lets you do a lot of stuff which can help you get the most out of your Android device. Of course, a toolkit (like Wugfresh or HTC RUU) is much much easier but chances are, you may not always find a toolkit for your device, so it pays to know this.

What you need:

You need to do two things to get you started.

On your device: tap ‘Build number’ 7 times to enable developer options, in ‘Developer Options’ enable ‘USB debugging’ (or Android debugging)

On your PC: install the Android SDK / platform tools. open the install location, press ideal click while holding ‘Shift’ crucial and choose ‘Open Command window here’.
If you see a black window with DOS format text, you’re there.

Don’t Miss
List of ADB and Fastboot Commands for Android

ADB and Fastboot Commands:

adb reboot
This command reboots your device in normal mode. You can use it when you’ve flashed something on your device and wish to reboot

adb reboot recovery
If a recovery is already installed on your device, this command will restart the device in recovery mode.

adb reboot bootloader
The bootloader is important when unlocking & other tasks. This command restarts your device in bootloader mode.

adb reboot fastboot
Instead of going to bootloader mode and then choosing fastboot, this command takes you directly to the fastboot mode that helps you flash custom-made recoveries & ROMs on your device.

fastboot oem unlock
When in fastboot, this command unlocks your device (unlocking bootloader is needed for custom-made recoveries & ROMs on a stock device)

fastboot reboot bootloader
Rebooting your device from fastboot mode to fastboot mode again in a fresh session (recommended as a fresh when flashing multiple items)

fastboot flash recovery recovery.img
Command to flash a custom-made recovery on your device (make sure the img file of the recovery is renamed ‘recovery.img’ and is present in the platform-tools folder)

Read Next
Boot Android devices into Fastboot / recovery / Bootloader Mode

Leave a Reply

Your email address will not be published. Required fields are marked *