下载 Cyanogenmod 源代码树需要几个月
downloading Cyanogenmod source tree takes months
我这两天在下载cyanogen源码
我正在使用 Ubuntu 14.04 (VBox Windows 8) 克隆 Cyanogenmod 12.0 存储库。
repo init -u https://github.com/CyanogenMod/android.git -b cm-12.0
repo sync -c -j 4
有什么加快速度的技巧吗?
在上面的评论中,OP 透露 -j 4
causes repo
to use four simultaneous threads,但 OP 的 VM 只有两个内核。
运行 比内核多的线程通常会影响性能,增加虚拟内核的数量,以及切换到 -j 2
,似乎 。
我这两天在下载cyanogen源码
我正在使用 Ubuntu 14.04 (VBox Windows 8) 克隆 Cyanogenmod 12.0 存储库。
repo init -u https://github.com/CyanogenMod/android.git -b cm-12.0
repo sync -c -j 4
有什么加快速度的技巧吗?
在上面的评论中,OP 透露 -j 4
causes repo
to use four simultaneous threads,但 OP 的 VM 只有两个内核。
运行 比内核多的线程通常会影响性能,增加虚拟内核的数量,以及切换到 -j 2
,似乎