오랫만에 집에있는 노트북에서 android source 를 받으려고 했더니 아래와 같은 문제가 발생한다.
$repo init -u https://android.googlesource.com/platform/manifest -b android-4.0.1_r1
Getting repo ...
from git://android.git.kernel.org/tools/repo.git
android.git.kernel.org[0: 149.20.4.77]: errno=Connection refused
fatal: unable to connect a socket (Connection refused)
생각해보니 android.git.kernel이 공격을 당해서 android git repository가 변경이 되었었지..
오래전에 받아둔 repo를 그대로써서 문제가 된것이다.
$vi ~/bin/repo
#!/bin/sh
## repo default configuration
##
REPO_URL='https://android.googlesource.com/tools/repo'
REPO_REV='stable'
구버젼 repo의 REPO_URL은 위의 주소가 아닌 git://android.git.kernel.org/... 로 되어 있을 것이다.
REPO_URL을 변경해 주거나, 깔끔하게 repo를 삭제하고 다시 받는게 좋다.
'Android > Tools' 카테고리의 다른 글
ADT doesn't show up in eclipse on ubuntu (0) | 2012.11.20 |
---|---|
[Android] CTS 테스트 #1 (3) | 2011.12.13 |
Android tools, layoutopt - Optimize your layouts (1) | 2009.12.15 |
Ubuntu 9.10, Eclipse에서 ADT install 시 button 동작 하지 않는 문제 (1) | 2009.11.21 |
Android SDK 2.0 설치 에러 해결 (SDK Setup.exe) (2) | 2009.10.28 |