ADB / Fastboot

ADB Sideload: Install ZIPs from Recovery Without USB Storage

Published: June 25, 2026 Applies to: Windows 10/11, macOS, Linux — Android 4.1 and later

ADB sideload lets you push a ZIP update package from your computer directly to a phone or tablet sitting in Android recovery, without needing a microSD card, a USB OTG drive, or internal storage space for the ZIP itself. It is the standard method Google recommends for applying OTA updates manually and is also the only way to apply updates when internal storage is full or a custom recovery lacks USB OTG support.

What ADB Sideload Actually Does

ADB sideload is a special ADB transport mode that exists only in recovery, not in the normal booted system. When you select "Apply update from ADB" in recovery, the device switches its USB interface to a sideload-specific mode and waits. Your PC pushes the ZIP over USB using the Adb protocol; recovery verifies the package signature and, if valid, applies it. The ZIP never needs to be written to a storage partition first — recovery receives and processes it in a streaming fashion.

Two distinct environments support sideload:

Prerequisites

Before starting, confirm you have:

Entering Recovery Mode

The key combination to enter recovery varies by device:

Sideload via Stock Recovery

Once in stock Android recovery, the screen shows options for rebooting, applying updates, and wiping data. Navigate using Volume keys, confirm with Power.

  1. Select Apply update from ADB. The screen shows "Now send the package via adb sideload..." and the device is now in sideload mode.
  2. On your PC, open a terminal in the folder containing the ZIP file (or use the full path).
  3. Run the sideload command:
    adb sideload update.zip
  4. The terminal shows transfer progress as a percentage. Recovery simultaneously shows a progress bar as it verifies and applies the package. The full process typically takes 2–10 minutes depending on ZIP size and USB speed.
  5. When complete, recovery shows the result. If installation was successful, select Reboot system now.

Stock recovery enforces Google's release key signature. Only official OTA packages from Google or your device manufacturer pass this check. Attempting to sideload a custom ROM or unofficial ZIP through stock recovery will fail with a "signature verification failed" error — this is expected behavior and is not a USB driver problem.

Sideload via TWRP (Custom Recovery)

TWRP (Team Win Recovery Project) has a dedicated sideload option that works identically from the PC side, but without mandatory signature enforcement.

  1. Boot into TWRP. From the main menu, tap Advanced > ADB Sideload.
  2. Optionally toggle Wipe Dalvik Cache and Wipe Cache (recommended before flashing a new ROM).
  3. Slide the Swipe to Start Sideload slider.
  4. On the PC, run:
    adb sideload rom.zip
  5. TWRP shows transfer progress and installer script output. When the flash completes, tap Reboot System.

If you need to flash multiple ZIPs in sequence (ROM + GApps, for example), after the first sideload completes TWRP returns to its ADB Sideload screen. Swipe again and start the second sideload command without rebooting between them.

Verifying the Transfer Completed Correctly

The terminal-side progress counter may reach 47% and appear to hang. This is normal: ADB sideload reports progress in terms of data sent, not installation progress. Recovery is still running the update-script inside the ZIP after all data has been transferred. Wait for the recovery screen to show a result rather than relying on the terminal percentage to reach 100%.

On some devices and Android versions, adb sideload exits with status 0 (success) on the PC side even if recovery shows a failure. Always check the message displayed on the phone screen, not just the terminal output.

Common Sideload Errors and Fixes

"adb: error: failed to read response" immediately after running the command: The device is not in sideload mode. Confirm you selected "Apply update from ADB" (stock recovery) or swiped the sideload slider (TWRP). If the phone is in regular ADB mode (booted normally), adb sideload returns this error because the sideload subprotocol is only available in recovery.

"Signature verification failed" in stock recovery: The ZIP was not signed with the official manufacturer release key. Use TWRP or another custom recovery that does not enforce signature checks. You cannot bypass this restriction in stock recovery.

Transfer stalls at a specific percentage and never progresses: Usually caused by a failing USB cable or a port that cannot sustain the sustained transfer rate. Try a different cable and a direct USB port on the PC (avoid USB hubs). If using USB 3.x, try a USB 2.0 port or a USB-A to USB-C adapter instead of a direct USB-C connection, which can have speed-stepping issues on some PC motherboards.

"adb: failed to copy '/path/to/file': remote No such file or directory": The path to the ZIP contains spaces or special characters. Either rename the file to remove spaces, or wrap the path in quotes:

adb sideload "C:\Users\Name\Downloads\update package.zip"

Device not found when running adb sideload (no devices/emulators found): The USB driver may not cover sideload mode. Sideload uses a different USB hardware ID than normal ADB. Open Device Manager while the phone is in sideload mode and check for an unknown device. Update its driver to the Google USB Driver or the manufacturer's official USB driver package.