bashインストール

# pkg_add -r bash
# ls /usr/local/bin/bash
/usr/local/bin/bash
# cat /etc/shells
# $FreeBSD: src/etc/shells,v 1.5 2000/04/27 21:58:46 ache Exp $
#
# List of acceptable shells for chpass(1).
# Ftpd will not allow users to connect who are not using
# one of these shells.

/bin/sh
/bin/csh
/bin/tcsh
/usr/local/bin/bash
/usr/local/bin/rbash

bashがインストールされた。

使用するシェルをbashに切り替え。

# chsh -s /usr/local/bin/bash
chsh: user information updated

一旦ログインしなおして切り替わったか確認。

# echo $SHELL
/usr/local/bin/bash

.bashrcを作成して、パッケージのリモートインストール用の設定。

export FTP_PASSIVE_MODE=TRUE
export PACKAGEROOT=ftp://ftp6.jp.freebsd.org

完了