Skip to content
Home » Android » How to Use ADB Commands on Android without Root

How to Use ADB Commands on Android without Root

Setting up ADB and Fastboot on Windows, macOS, and Linux is easy. However, you can’t do that unless you have a rooted device when it comes to using ADB commands on an Android device. Thankfully,  terminal emulator apps like aShell and Termux allow you to use ADB natively. This tutorial will explore different methods to use ADB on Android devices without root including Termux, aShell, and WebADB web app.

Using Shizuku-supported aShell App

Shizuku acquires system APIs and permissions through wireless debugging and passes them to supported apps. Many apps require root only to access certain Android permissions so you can modify your Android device. You can use the Shizuku-supported apps to do amazing things without rooting your device. Besides modifying, tweaking, and customizing your Android phone, Shizuku also makes it possible to use ADB commands on Android devices without root.

  1. Download and install Shizuku on your Android device.
  2. Enable USB debugging on your device.
  3. Open Shizuku and tap the Pairing button under the ‘Start via Wireless debugging’ section. pairing option in shizuku
  4. Shizuku will request notification permission. To grant it, tap Notification options and allow notifications for Shizuku. allow notifications permission to shizuku
  5. Having allowed notifications, tap the back button on the navigation bar and select Developer options. developer options in shizuku
  6.  Go to the Debugging section, tap Wireless Debugging, and enable the feature. Next, select the Pair device with pairing code option.pair shizuku with pairing code via wireless debugging
  7. A pop-up with a pairing code will appear and you’ll receive a notification from Shizuku requesting to enter the 6-digit code. enter wireless debugging pairing code for shuzuku
  8. Type the Wi-Fi pairing code and tap the Send option.
  9. In Shizuku, tap the Start button. The app will run a script and start the Shizuku service in the background.
  10. Exit Shizuku and install aShell from the Play Store (paid) or F-Droid (free).
  11. Launch aShell and grant it access to Shizuku.allow ashell to access shizuku
  12. That’s it! You can now use the aShell command box to execute ADB and Shell commands on your device without root. For instance, to check the health of your phone’s battery, type “dumpsys battery” and press the Send or Enter button.

Installing ADB and Fastboot using Termux

It’s possible to install ADB and Fastboot on Android by cloning any of the 3 Gits listed below using a terminal emulator like Termux.

  1. ADB Fastboot Termux
  2. Termux ADB
  3. Termux ADB Fastboot

Now let’s see how you can install ADB and Fastboot on an Android phone or tablet.

  1. Download and install Termux from the Play Store.
  2. Having installed the app, you need to grant Storage permission to Termux. To do so, go to Settings > Apps > Termux and tap on Permissions. Then tap on Storage and select Allow. termux storage permission android
  3. Now open Termux, type the following and tap the Enter key on the keyboard.
    pkg update
  4. Now, execute the following command to upgrade Termux packages.
    pkg upgrade
  5. Since ADB Fastboot Termux is a Python-based script, we must install Python on the Android device. Issue the following command in Termux.
    pkg install python

    install python on android via termux

  6. While installing Python on your Android device, you might be prompted to authorize the installation by typing ‘Y‘ (for Yes).
  7. Since we have to clone Git from GitHub, you’ll need to install another package called Git using this command.
    pkg install git

    install git and android via termux

  8. It’s time to clone the ADB Fastboot Termux Git using Termux.
    git clone https://github.com/freetheorange905/adb-fastboot-termux.git

    adb fastboot git clone termux android

  9. Now that the ADB and Fastboot Git have been cloned to your Android device we need to change the path directory path using cd as shown below (see the screenshot above).
    cd adb-fastboot-termux
  10. Finally, execute the following command in Termux.
    python af.py
  11. As soon as you tap the Enter key, a new screen will appear and you will be prompted to type 1 to install ADB and Fastboot on your Android device, and 2 to uninstall them. Type 1 and tap the Enter key. adb fastboot installed in termux android
  12. When ADB and Fastboot are installed, you’ll get a message saying, “Tools were successfully installed!

You can also install the ADB and Fastboot tools on your Android with a single command that includes all the above commands in one line.

pkg update && pkg upgrade && pkg install python && pkg install git && git clone https://github.com/freetheorange905/adb-fastboot-termux.git && cd adb-fastboot-termux && python af.py

Samsung Galaxy users can download Samsung firmware on their phone or tablet via Termux. Read my detailed tutorial to learn how you can do that.

Having set up ADB and Fastboot on your device via Termux, use the following command to verify if you have done everything as expected.

adb
or
adb help

As you can see below, you’ll get information such as the Android Debug Bridge version and other ADB options on your phone’s screen.

adb command in termux for android

Please note that if you run the adb devices command, you won’t get any device ID under the list of devices attached because your Android device will now act like an ADB/Fastboot host.

adb devices command on android device via termux

Please note that to use ADB and Fastboot commands, your host Android device needs to be rooted as it can be done using a Magisk module called ADB & Fastboot for Android NDK. I’ll update this tutorial describing the steps to use ADB commands without a PC or laptop.

Using ADB Commands on Android without Root

Recently, a developer named Yume Chan launched a website that lets us use ADB commands on Android devices via mobile browsers like Chrome and Microsoft Edge. It means we no longer need a rooted Android device to use ADB. WebADB, as it’s aptly named, makes use of the WebUSB API found in all Chromium-based desktop and mobile browsers.

Web ADB comes with a bunch of features. It lets you send ADB commands from one Android device to another, mirror the screen and control the other device, install APK, browse the files on the other device, capture screenshots, etc.

Prerequisites

  • Two Android devices (phone or tablet).
  • A USB OTG or a USB Type-C to a USB Type-C cable. USB OTG and USB Type-C to Type-C cable
  • Enable USB debugging on the Android device you want to send ADB commands.

Let’s see how to use Web ADB to run ADB commands on Android devices without root. You can use one of two Android devices as a host to perform ADB commands on the other device.

  1. Open the Web ADB website on the Android device you want to use as a host.
  2. Tap the 3-dot icon in the Chrome browser and enable the Desktop site option. enable desktop site option in chrome for android
  3. Insert the USB OTG or the USB Type-C cable on the device you want to use as a host. Now plug the other end of the USB cable into the client Android device you want to send the command to.
  4. Tap the Add Device option on the Web ADB website. Select your device in the pop-up window and tap on the Connect button. select android device in web adb
  5. Tap OK when the browser asks to grant access to your connected device. grant usb adb connection on chrome for android
  6. At this point, you will receive a notification on your second device asking you to Allow USB debugging. Tap on Allow. allow usb debugging on computer
  7. You’ll see your device codename in the Web ADB command box. It means that both devices have been appropriately connected for ADB operations. android devices connected via adb
  8. You’re all set to use ADB and ADB Shell commands to control the connected Android device. Don’t forget to omit “adb” and “adb shell” while executing commands on a computer. For example, if you want to reboot the connected Android phone or tablet into the bootloader mode, you should use just reboot bootloader and tap Enter on the keyboard. adb reboot bootloader comand

You can execute any other ADB command on your Android device without a laptop or PC without rooting your device.

Read Next: List of 500+ Funny Things to Ask Google Assistant

Rakesh Shukla

Rakesh Shukla

Rakesh is a geek by heart with an ardent passion for all things tech. From a young age, he was drawn to the world of technology and found himself constantly tinkering with gadgets and devices. He enjoys learning and discovering the newest trends in the world of Android, iOS, and Windows.View Author posts