FreeBSD ports¶
地址¶
http://mirrors.ustc.edu.cn/freebsd-ports/
说明¶
FreeBSD ports 软件源
使用方法¶
在 /etc/make.conf
中添加以下内容(如果文件不存在,则新建之):
MASTER_SITE_OVERRIDE?=http://mirrors.ustc.edu.cn/freebsd-ports/distfiles/${DIST_SUBDIR}/
ports.tar.gz 文件为 Ports Collection,可以下载后解压到 /usr/ports/
目录。也可参考 FreeBSD Handbook 中 Installing the Ports Collection 一节,使用 git
获取 ports tree:
git clone --filter=tree:0 https://mirrors.ustc.edu.cn/freebsd-ports/ports.git /usr/ports
Warning
这里使用了 --filter=tree:0
参数以进行 treeless
clone,减少下载量与服务端压力。关于不同的部分 clone
方式及其注意事项,可参考
GitHub Blog 的有关文章。
本帮助早期版本使用了 --depth
,但请避免使用 --depth
参数,
因为其后续更新会给服务器带来大量的计算压力。
如果不需要后续更新 ports,推荐直接下载 http://mirrors.ustc.edu.cn/freebsd-ports/ports.tar.gz 文件并解压。
Warning
部分 ports 的源代码需要从 http://distcache.freebsd.org/ports-distfiles/ 以外的 master site 下载,本镜像不包含这些文件。
Warning
本镜像仅包含 ports tree 中 HEAD branch 引用到的文件。季度分支(如
2020Q4
)引用的文件有可能不包含在本镜像中。