adb를 이용하여 hosts 파일 수정


adb를 이용하여 에뮬레이터의 /system/etc/hosts 파일을 수정해보자

먼저 실행중인 에뮬레이터 확인이 필요합니다.

adb devices

1544029819446

  • 디바이스 마운트
adb -s {에뮬레이터_이름} remount

1544030062681

  • 루트권한으로 변경
adb root
adb remount

1544030093765

  • hosts 파일 다운로드
adb -s {에뮬레이터_이름} pull /system/etc/hosts {다운경로}

1544030115013

  • hosts 파일 수정

메모장혹은 다른 파일 에디터를 이용하여 수정을 한다.

  • hosts 파일 업로드
adb -s {에뮬레이터_이름} push {수정한_hosts} /system/etc/hosts

1544030148494

  • 업로드 확인
adb shell
cat /etc/hosts
ping {호스트}





© 2018. by brian jung

Powered by storm