=====repo sync start===== error: Failed connect to android.googlesource.com:443; Connection refused

最近要搞android移植相关的东西 ,需要下载Android4.2的源码包 ,结果被伤的不轻啊 。。。。。。坑啊。。。。

连续下了两天都没下载成功,用自动脚本下也还是,不停得报这个破错误 。

尝试过各种改 包括 修改/etc/hosts,也还是一个鸟样 ~~~

不经意间替换了fetch的URL路径,终于可以下载了 ,虽然网速有点坑爹。。。。但至少可以下 。。。

 

/.repo/manifests# gedit default.xml

部分内容如下:



fetch="git://Android.git.linaro.org/" />

//把原来的android.googlesource.com换成这个Android.git.linaro.org
fetch="https://github.com/Android4SAM/" />//这里原先是git://....
remote="aosp"
sync-j="4" />

我的/etc/hosts/如下 ,以下IP实际测试过,目前是ok的。

 

127.0.0.1 localhost
127.0.1.1 vm
74.125.31.82 www.googlesource.com
74.125.31.82 android.googlesource.com
203.208.46.172 cache.pack.google.com
74.125.204.82 gerrit.googlesource.com

以下是控制台输入:

 

From git://Android.git.linaro.org/platform/build
* [new tag] android-cts-2.1_r2 -> android-cts-2.1_r2
* [new tag] android-cts-2.1_r3 -> android-cts-2.1_r3
* [new tag] android-cts-2.1_r4 -> android-cts-2.1_r4
* [new tag] android-cts-2.1_r5 -> android-cts-2.1_r5
remote: Counting objects: 117795, done.
remote: Compressing objects: 100% (34218/34218), done.
Receiving objects: 43% (51477/117795), 13.44 MiB | 4 KiB/s //尼玛。。。还能再慢点吗。。破网络。。

哎 。。。慢慢下吧。。。哥不急。。。

 

经测试 :将 fetch="git://Android.git.linaro.org/"改为
fetch="git://codeaurora.org" ,那速度 ,哗哗地。。。。

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

你可能感兴趣的:(Android)