FreeBSD更换国内源

背景

在使用FreeBSD时,安装工具由于网络问题很容易出现随时中断且耗时较长的问题。为了解决该问题尝试进行国内源替换。

修改pkg源

用户自定义源:
mkdir -p /usr/local/etc/pkg/repos
vi /usr/local/etc/pkg/repos/FreeBSD.conf
# FreeBSD.conf的内容
FreeBSD: {
    url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/${ABI}/quarterly",
}

修改 ports 源

vi /etc/make.conf

# content of make.conf
FETCH_CMD=axel -n 10 -a
DISABLE_SIZE=yes
MASTER_SITE_OVERRIDE?=http://mirrors.ustc.edu.cn/freebsd-ports/distfiles/${DIST_SUBDIR}/

修改 portsnap 源

vi /etc/portsnap.conf

# content of porsnap.conf
SERVERNAME=mirror.bjtu.edu.cn/reverse/freebsd-portsnap/

pkg更新

pkg update

你可能感兴趣的:(FreeBSD,linux)