The Most Useful Things You Can Do With ADB And Fastboot On Android

The Most Useful Things You Can Do With ADB And Fastboot On Android

Recently, we showed you how to install ADB and fastboot on any OS. If you’re not sure why you’d want to go to the (relatively minor) trouble, here are just some of the useful things you can do with these two handy tools.

Disclaimer: These commands are intended to give you an idea of what you can do with ADB and fastboot. They are not direct instructions and not all commands work on all devices. It’s perhaps better to think of this as a glossary. Due to the sheer number and variety of devices and implementations in the Android world, it’s impossible for us to provide step-by-step instructions for every single device. Be sure to research your specific phone or tablet before throwing commands at it.

Manage Your Device With ADB

The Most Useful Things You Can Do With ADB And Fastboot On Android

ADB has a wide variety of functions for managing your device, moving content to and from your phone, installing apps, and backing up and restoring your software. You can use ADB while your phone is plugged in to a computer. You can also use ADB with your device wirelessly by following these instructions. You’ll need to briefly connect your device to your computer with a USB cable for this to work, but it should only take a few seconds to execute these commands and then you’re good to use ADB wirelessly if you so choose.

adb devices
Function: Check connection and get basic information about devices connected to the computer.

When using ADB, this is probably the first one command you’ll run. It will return a list of all devices that you have connected to your computer. If it returns a device ID like the one seen above, you’re connected and ready to send commands.

adb reboot recovery
Function: Reboot your phone into recovery mode.

Functions such as flashing ROMs to your phone require you to boot into recovery mode. Normally, this requires you to hold down a particular set of buttons on your phone for a certain length of time, which is obnoxious. This command allows you to boot directly into recovery mode.

adb reboot-bootloader
Function: Reboot your phone into bootloader mode.

Along the same lines as the previous command, this one allows you to boot directly to your phone’s bootloader. Once you’re in the bootloader, ADB won’t work anymore. That’s where fastboot comes in (which we’ll get to in a bit). However, much like the recovery command, it’s much easier to boot into your bootloader with a command on your computer than a complex series of buttons on your phone.

adb push [source] [destination]
Function: Copy files from your computer to your phone.

The push command allows you to copy files from your computer to your phone without touching your device. This is particularly handy for copying large files from your computer to your phone like movies or ROMs. In order to use this command, you’ll need to know the full file path for both your source and destination. If the file you want to copy is already in your tools folder (where ADB lives), you can simply enter the name of the file as the source.

adb pull
Function: Copy files from your phone to your computer.

The yin to to push’s yang, the pull command in ADB allows you to copy files from your phone to your computer. When pulling files, you can choose to leave out the destination parameter. In that case, the file will be copied to the folder on your computer where ADB itself lives. You can then move it to wherever you’d prefer like normal.

adb install [source.apk]
Function: Remotely install APKs on your phone.

You can use this command to install an app on your phone without touching it. While this isn’t a terribly impressive trick for an app that’s on the Play Store (where you can already remotely install, uninstall and update apps), it’s quite handy if you need to sideload an app.

adb shell [command]
Function: Open or run commands in a terminal on the host Android device.

We love the terminal here at Lifehacker. There are so many great things you can do with it. Most of us don’t tend to bother with the terminal in Android because we don’t want to type long text-based commands on a tiny touchscreen. However, the adb shell command allows you to open up a full terminal on the host device. Alternatively, you can type “adb shell” followed by a valid terminal command to execute just that one command by itself.

adb backup
Function: Create a full backup of your phone and save to the computer.

Backing up your Android phone is already something you can and should be doing automatically. However, if you need to create a complete backup before hacking away at something particularly risky, you can create a full backup with a single command. You don’t even need root access (though this may mean that some protected data can’t be backed up). You can read more about the parameters for this command — and there are a lot of them — here.

adb restore
Function: Restore a backup to your phone.

The corollary to the previous command, adb restore allows you to point to an existing backup file and restore it to your device. So, for example, type “adb restore C:[restorefile].zip” and your phone will shortly be back to normal.

adb sideload
Function: Push and flash custom ROMs and zips from your computer.

This command is a relative newcomer to the ADB field and is only supported by some custom recoveries. However, you can use this single command to flash a .zip that’s on your computer to your phone. Once again, this allows you to flash whole ROMs (or anything else you can flash with a .zip file) without touching your phone.

These commands are just some of the more useful ones you can use with ADB installed on your computer. You may not want to use it all the time for everyday tasks, but when you need them, you’ll be glad you have them.

Unlock And Modify Your Phone’s Firmware With Fastboot

The Most Useful Things You Can Do With ADB And Fastboot On Android

As noted in our previous article, fastboot allows you to send commands to your phone while in the bootloader (the one place ADB doesn’t work). While you can’t do quite as many things here, the things you can do are awesome, including unlocking certain phones — like Nexuses and certain others — as well as flashing custom recoveries and even some ROMs. It should be noted, though, that not all phones support fastboot and if you have a locked bootloader, you’re probably out of luck here. That being said, here are some of the most useful tools in fastboot’s arsenal.

fastboot oem unlock
Function: Unlock your bootloader, making root access possible.

When people go on about how “open” Nexus devices are, this is what they’re talking about. Most phones require a root exploit to gain superuser access and the ability to heavily modify your phone’s firmware. With a Nexus device, you can unlock your bootloader with a single command. From there, you’ll be allowed to install custom recoveries or give yourself root access.

It should be noted that this command will also completely wipe your phone. This means it’s a great command to run when you get a brand new phone, but if you’ve been using yours for a while, do a backup first.

fastboot devices
Function: Check connection and get basic information about devices connected to the computer.

This is essentially the same command as adb devices from earlier. However, it works in the bootloader, which ADB does not. Handy for ensuring that you have properly established a connection.

fastboot flash recovery
Function: Flash a custom recovery image to your phone.

Flashing a custom recovery is an essential part of the ROM-swapper lifestyle. As with everything else in this list, you can install a custom recovery on your device without touching it by using this command.


The Cheapest NBN 50 Plans

Here are the cheapest plans available for Australia’s most popular NBN speed tier.

At Lifehacker, we independently select and write about stuff we love and think you'll like too. We have affiliate and advertising partnerships, which means we may collect a share of sales or other compensation from the links on this page. BTW – prices are accurate and items in stock at the time of posting.

Comments