1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 22:42:08 +02:00
tldr/pages/common/adb-reboot.md
Lakshyajeet Singh Goyal ac12fcc17a
adb reboot: add page (#14002)
Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
2024-10-07 16:01:16 +02:00

20 lines
350 B
Markdown

# 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`