문제:
다음 처럼 adb로 장치를 리스팅했을 때 ????????????로 표시되며 정상동작하지 않을 때가 있다.
해결:
1. 장치 ID 확인 및 설정
다음 내용으로 /etc/udev/rules.d/51-android.rules 파일을 생성
2. adb 재시작
refs:
http://www.google.com/support/forum/p/android/thread?tid=08945730bbd7b22b&hl=en
http://developer.android.com/guide/developing/device.html
happy hackin'
다음 처럼 adb로 장치를 리스팅했을 때 ????????????로 표시되며 정상동작하지 않을 때가 있다.
$ adb devices
List of devices attached
???????????? no permissions
List of devices attached
???????????? no permissions
해결:
1. 장치 ID 확인 및 설정
$ lsusb
......
Bus 002 Device 005: ID 04e8:6850 Samsung Electronics Co., Ltd
......
장치 ID는 04e8이다.......
Bus 002 Device 005: ID 04e8:6850 Samsung Electronics Co., Ltd
......
다음 내용으로 /etc/udev/rules.d/51-android.rules 파일을 생성
SUBSYSTEM=="usb", SYSFS{idVendor}="04e8", MODE="0666"
2. adb 재시작
$ sudo adb kill-server
$ sudo adb start-server
$ sudo adb start-server
refs:
http://www.google.com/support/forum/p/android/thread?tid=08945730bbd7b22b&hl=en
http://developer.android.com/guide/developing/device.html
happy hackin'