下載最新的原始碼

SVN

FreeBSD 專案使用 SVN 作為預設 SCM。可以使用 svnlite 軟體下載原始碼。

獲得當前

cd /usr/src
svnlite checkout https://svn.freebsd.org/base/head .

獲取版本

cd /usr/src
svnlite checkout https://web.freebsd.org/base/release/11.0.0 .

Tarball(http&ftp)

你還可以使用 fetch 命令從凍結的 tarball 獲取原始碼

HTTP

cd /tmp
fetch http://ftp.freebsd.org/pub/FreeBSD/releases/amd64/11.0-RELEASE/src.txz
cd /usr/src
tar xJvf /tmp/src.txz

FTP

cd /tmp
fetch ftp://ftp.freebsd.org/pub/FreeBSD/releases/amd64/11.0-RELEASE/src.txz
cd /usr/src
tar xJvf /tmp/src.txz

混帳

GitHub 上

git clone https://github.com/freebsd/freebsd freebsdsrc