android_bootable_recovery

(★ 464)

No description available.

파일 탐색기

  • adb_install.cpp
  • adb_install.h
  • Android.mk
  • asn1_decoder.cpp
  • asn1_decoder.h
  • backup.cpp
  • bootloader.h
  • bu.cpp
  • bu.h
  • CleanSpec.mk
  • common.h
  • default_device.cpp
  • device.cpp
  • device.h
  • error_code.h
  • fuse_sdcard_provider.cpp
  • fuse_sdcard_provider.h
  • fuse_sideload.cpp
  • fuse_sideload.h
  • install.cpp
  • install.h
  • interlace-frames.py
  • NOTICE
  • print_sha1.h
  • README.md
  • recovery-persist.cpp
  • recovery-persist.rc
  • recovery-refresh.cpp
  • recovery-refresh.rc
  • recovery.cpp
  • recovery_cmds.h
  • res-560dpi
  • restore.cpp
  • roots.cpp
  • roots.h
  • screen_ui.cpp
  • screen_ui.h
  • ui.cpp
  • ui.h
  • unique_fd.h
  • verifier.cpp
  • verifier.h
  • voldclient.cpp
  • voldclient.h
  • wear_touch.cpp
  • wear_touch.h
  • wear_ui.cpp
  • wear_ui.h

# CDN으로 사용하기

jsDelivr

jsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.

명령어 용어집

이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.

🔍

adb reboot

설명 보기 ▼

Reboot a connected Android device or emulator.

adb reboot

Reboot the device normally:

adb reboot bootloader

Reboot the device into bootloader mode:

adb reboot recovery

Reboot the device into recovery mode:

🔍

adb shell

설명 보기 ▼

Run shell commands on a connected Android device or emulator.

adb shell

Start a remote interactive shell on the emulator or device:

tldr {{[-p|--platform]}} android getprop

View documentation for showing Android system properties:

tldr {{[-p|--platform]}} android pm

View documentation for the Android package manager:

🔍

adb

설명 보기 ▼

안드로이드 디버그 브릿지: 안드로이드 에뮬레이터 객체 또는 연결된 안드로이드 기기와 통신하는 도구.
shell과 같은 일부 하위 명령어는 별도의 사용법 문서를 제공.
더 많은 정보: <https://developer.android.com/tools/adb>.

adb start-server

adb 서버 프로세스가 실행되고 있고, 시작하는지 확인:

adb kill-server

adb 서버 프로세스 종료:

adb shell

대상 에뮬레이터/장치 객체에서 원격 쉘 시작:

🔍

fastboot

설명 보기 ▼

부트로더 모드에 있을 때 연결된 Android 장치와 통신 (ADB가 작동하지 않는 곳).
더 많은 정보: <https://cs.android.com/android/platform/superproject/+/main:system/core/fastboot>.

fastboot oem unlock

부트로더 잠금해제:

fastboot oem lock

부트로더 리로드:

fastboot reboot bootloader

장치를 fastboot 모드에서 fastboot 모드로 재부팅:

// repository documentation