mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 14:02:08 +02:00
32 lines
716 B
Markdown
32 lines
716 B
Markdown
# fastboot
|
|
|
|
> 부트로더 모드에 있을 때 연결된 Android 장치와 통신 (ADB가 작동하지 않는 곳).
|
|
> 더 많은 정보: <https://cs.android.com/android/platform/superproject/+/main:system/core/fastboot>.
|
|
|
|
- 부트로더 잠금해제:
|
|
|
|
`fastboot oem unlock`
|
|
|
|
- 부트로더 리로드:
|
|
|
|
`fastboot oem lock`
|
|
|
|
- 장치를 fastboot 모드에서 fastboot 모드로 재부팅:
|
|
|
|
`fastboot reboot bootloader`
|
|
|
|
- 주어진 이미지를 조사:
|
|
|
|
`fastboot flash {{경로/대상/파일.img}}`
|
|
|
|
- 사용자 정의 복구 이미지 조사:
|
|
|
|
`fastboot flash recovery {{경로/대상/파일.img}}`
|
|
|
|
- 연결된 장치 목록 나열:
|
|
|
|
`fastboot devices`
|
|
|
|
- 장치의 모든 정보를 표시:
|
|
|
|
`fastboot getvar all`
|