HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

adb reboot — Reboot a connected Android device or emulator. More information: <https://manned.org/adb>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
connectedcommandrebootcliadb rebootandroiddeviceemulator

Problem

How to use the adb reboot command: Reboot a connected Android device or emulator. More information: <https://manned.org/adb>.

Solution

adb reboot — Reboot a connected Android device or emulator. More information: <https://manned.org/adb>.

Reboot the device normally:
adb reboot


Reboot the device into bootloader mode:
adb reboot bootloader


Reboot the device into recovery mode:
adb reboot recovery


Reboot the device into fastboot mode:
adb reboot fastboot

Code Snippets

Reboot the device normally

adb reboot

Reboot the device into bootloader mode

adb reboot bootloader

Reboot the device into recovery mode

adb reboot recovery

Reboot the device into fastboot mode

adb reboot fastboot

Context

tldr-pages: common/adb reboot

Revisions (0)

No revisions yet.