1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00

adb reboot: add page (#14002)

Co-authored-by: Managor <42655600+Managor@users.noreply.github.com>
This commit is contained in:
Lakshyajeet Singh Goyal 2024-10-07 19:31:16 +05:30 committed by GitHub
parent 97f0e9b445
commit ac12fcc17a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,20 @@
# 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`