Files
cheatsheet-tldr/tldr/adb-reboot
2024-10-08 00:16:55 +00:00

26 lines
443 B
Plaintext

---
syntax: markdown
tags: [tldr, common]
source: https://github.com/tldr-pages/tldr.git
---
# 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`