adb를 이용하여 hosts 파일 수정
in Devlog on Andorid
adb를 이용하여 에뮬레이터의 /system/etc/hosts 파일을 수정해보자
먼저 실행중인 에뮬레이터 확인이 필요합니다.
adb devices
- 디바이스 마운트
adb -s {에뮬레이터_이름} remount
- 루트권한으로 변경
adb root
adb remount
- hosts 파일 다운로드
adb -s {에뮬레이터_이름} pull /system/etc/hosts {다운경로}
- hosts 파일 수정
메모장혹은 다른 파일 에디터를 이용하여 수정을 한다.
- hosts 파일 업로드
adb -s {에뮬레이터_이름} push {수정한_hosts} /system/etc/hosts
- 업로드 확인
adb shell
cat /etc/hosts
ping {호스트}