Enable Developer Options on Android

Before your computer will recognize your Android device to use ADB commands, you have to enable Developer Options and USB debugging on your device. These aren’t enabled by default. Once you’ve enabled Developer Options, you also need to enable USB Debugging using the following steps: Now you’re ready to set up ADB.

How Do I Set Up ADB?

ADB is distributed via the Android SDK Platform-Tools package. If you have Android Studio installed on your computer (find out how to install Android Studio), then you can install ABD via the SDK Manager: Android Studio will now download the SDK Platform-Tools package. Alternatively, you can download the standalone Android SDK Platform-Tools package. To run ADB, navigate to the “platform-tools” folder you just downloaded. This folder should contain an “adb” program. You’ll need to open a new Terminal or command prompt window and change the directory so it’s pointing at this ADB program. For example, my command looks like this: You’re now ready to run ADB commands!

1. Show Connected Devices

When using ADB commands, you’ll need to ensure the device you want to interact with is actually connected to your computer. Although ADB has improved significantly in recent years, ADB can sometimes still struggle to “see” connected smartphones or tablets. The following command will ensure that ABD is ready to communicate with your Android device: After entering this command, the serial number of your connected devices should appear in the command prompt/Terminal.

2. Reboot Your Device

This command reboots your device in normal mode. You’ll typically run this command after you’ve flashed something to your device and need to reboot. This command can also be useful if you’re encountering issues with your Android device – for example, if your smartphone suddenly becomes unresponsive.

3. Reboot into Recovery

Android devices have a recovery mode, which is a special bootable partition. If you’re encountering issues with your Android device, then you may be able to fix these problems by booting into recovery mode. If you wish to reboot your device into recovery mode, then you can issue the following command: Your device will power down and then reboot into recovery mode. If you’ve flashed a custom recovery on your device, this will load instead of Android’s stock recovery.

4. Reboot into Bootloader Mode

The bootloader is the first thing that runs when you boot up your Android device. If you want to unlock the bootloader, reboot into recovery mode or perform other rooting-related tasks, then you’ll need to boot your device into bootloader mode.

5. Reboot into Fastboot

Android’s fastboot mode helps you flash custom recoveries as well as custom ROMs. Instead of going into bootloader and then choosing fastboot, you can launch directly into fastboot mode using the following command:

6. Send File to Your Device

There are plenty of applications dedicated to helping you transfer files between your computer and your Android device, such as OpenMTP. However, if you just want to transfer the occasional file, then downloading an entire application may feel like overkill. The adb push command lets you send files to your Android device. You just need to specify the source location of the file and the destination where you want to send that file: For example, you may have a file called “myapplication.apk” that’s stored on your Desktop that you want to push to your smartphone’s “downloads” folder. In this scenario, your ADB command may look something like this: The file will now be pushed from your laptop or computer and into the “Downloads” folder of the attached smartphone or tablet.

7. Get Files from Your Device

We’ve looked at pushing files, but it’s also possible to pull them. This ADB command lets you pull a file from your Android device so that it appears on your connected laptop or computer. You just need to specify the file you’re pulling and the location where that file should be stored on your computer: Let’s imagine that we want to pull a “myphoto.jpg” file from our smartphone or tablet and save it to our Desktop. The command would look something like this:

8. Install an App on Your Device

When you download an application from a source other than Google Play, you may have to push that application from your laptop to your smartphone or tablet as an APK file. To install an APK file, you just need to specify that APK’s location: For example, to install an APK named MTE.apk that’s stored on the Desktop, you’d run the following command: This APK file will then be pushed to Android and installed automatically. If you want to update an existing app, use the following:

9. Remount the System

Sometimes you may need to remount the entire system of your device. This puts the “/system” partition into writeable mode, and it should be run before pushing any files to this partition. Note that it’s only possible to remount the system on a rooted Android device. To remount, run the following command:

10. Sideload System Updates

Tired of waiting for system updates to roll out to your device? Download them manually and then sideload them onto your Android device via the ADB sideload command. You can find updates directly from Android and your device manufacturer. As a warning, if you’re trying to install updates on an older device, it may not work. For instance, if you’re trying to update an Android 7 device to Android 12, this could brick your device as the older device might not be able to handle the newer and more robust operating system. Once you’ve found your update, use the following:

11. Create and Restore a Backup

While there are plenty of backup apps available, you can create your own Android backup by using the backup command. This doesn’t guarantee that all app data will be backed up, but any files stored on your device, apps, files stored on an inserted SD card, and system apps can be backed up. This is ideal if you need to restore your Android device at any point. The basic backup command is: This will create a backup in the current directory. You can move the file wherever you want once the backup is complete. This backup will only back up certain apps, system data, and files. For a full backup, use the following: Full backups can take a while to complete depending on how much data is stored on your device. Whenever you want to use the backup to restore files to your device, use the following: Make sure the backup file is in the same directory as the adb tool. Otherwise, enter the path for the backup file in addition to the name of the file. If you just want to back up photos, try apps that provide you with automatic free and low-cost photo storage. Or you can just connect your device to your computer and manually move them from your DCIM and/or Pictures folders. You can also easily transfer contacts between devices. If you want to back up your app game data, use this method to sync your game progress between devices. Image credit: Denny Müller For those that can’t be removed that easily, use these steps to remove bloatware via ADB commands. Also, install the latest version of Android SDK Platform if you’re using an older version. An outdated version can result in errors. It’s also possible you haven’t navigated to the correct directory when using ADB. You must navigate to the “platform-tools” directory in Terminal or command prompt. Finally, verify that your USB cable is working and compatible with your device. For instance, a third-party cable I use for charging doesn’t won’t let my Android device show up on my Windows PC. I have to use the cable that came with my phone in order to use ADB commands or transfer files manually.