作業日記@HatenaBlog

各種の作業メモ

config エラー

FreeBSD 8.1-RELEASE がリリースされたので、csup でソースを更新し、kernel を再構築しようとしたところ、config コマンドのバージョンが古いとエラーが出た。

# cd /usr/src/sys/amd64/conf
# config GENERIC_ALTQ
ERROR: version of config(8) does not match kernel!
config version = 600007, version required = 600009
...
config コマンドの更新
# cd /usr/src/usr.sbin/config
# make
# cd ../..
# make -C usr.sbin/config all install
# rehash
# config -V
600009

参考URL: http://old.nabble.com/who-broke-config%288%29-and-why--td28776015.html