adduser
# 输入adduser后根据提示填写信息
# 修改ip、hostname和默认网关
/etc/rc.conf
# 修改dns
/etc/resolv.conf
# 查看路由表
netstat -rn
route add default <ip>
service netif restart
# 根据操作系统不同,分别修改以下文件
修改/etc/rc.conf中的hostname
# 执行命令
hostname <new hostname>
ntpdate time.nist.gov
# freebsd默认使用csh,修改配置信息需要修改.cshrc
vi .cshrc
setenv {$NAME} {$VALUE}
# 临时方案,一次加载一次有效
ldconfig -m PATH
# 长期方案,
# 参考资料:https://mirrors.ustc.edu.cn/help/freebsd-pkg.html
# 自 FreeBSD 11 以后的版本,包括 quarterly 和滚动更新的 latest 仓库。
# FreeBSD 9 以前的版本不支持新的 pkg 包管理器(pkgng),请升级到新版
mkdir -p /usr/local/etc/pkg/repos
vi /usr/local/etc/pkg/repos/FreeBSD.conf
# start copy and paste
FreeBSD: {
url: "pkg+http://mirrors.ustc.edu.cn/freebsd-pkg/${ABI}/quarterly",
}
# end
pkg update -f
portsnap fetch update
portsnap extract
FreeBSD9.2不支持pkg,ports也不再支持,想用什么软件需要用源码编译安装。
暂空
curl -OL http://ftpmirror.gnu.org/autoconf/autoconf-2.69.tar.gz
tar -xzf autoconf-2.69.tar.gz
cd autoconf-2.69
./configure && make && sudo make install
curl -OL http://ftpmirror.gnu.org/automake/automake-1.14.tar.gz
tar -xzf automake-1.14.tar.gz
cd automake-1.14
./configure && make && sudo make install
curl -OL http://ftpmirror.gnu.org/libtool/libtool-2.4.2.tar.gz
tar -xzf libtool-2.4.2.tar.gz
cd libtool-2.4.2
./configure && make && sudo make install