Android - adb 명령어로 공장초기화(Factory reset)

adb 명령어로 공장초기화(Factory data reset) 시키는 방법을 소개합니다.

1. Factory reset(wipe data)

다음 명령어로 recovery에 /data 파티션 삭제를 요청하고, recovery에 진입하여 공장초기화를 할 수 있습니다.

$ adb shell "recovery --wipe_data"
$ adb reboot recovery

2. recovery 명령어

recovery 명령어에 다음과 같은 옵션을 사용할 수 있습니다.

* The arguments which may be supplied in the recovery.command file:
*   --send_intent=anystring - write the text out to recovery.intent
*   --update_package=path - verify install an OTA package file
*   --wipe_data - erase user data (and cache), then reboot
*   --wipe_cache - wipe cache (but not user data), then reboot
*   --set_encrypted_filesystem=on|off - enables / diasables encrypted fs

References

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha