2013年1月に調達したDELL T110 II に9/22にフライング・リリースされたFreeBSD 11.0-Rをインスコ。
入れる過程でのログを以下に記しておく。
1. パーティション作成
2. NIC設定
・対象部位: bge0 (vendor = ‘Broadcom Corporation’ /device = ‘NetXtreme BCM5722 Gigabit Ethernet PCI Express’ )
・症状: 起動後に下記ログを吐いて突然死する
bge0: link state changed to DOWN
・対処: /boot/loader.conf に下記を記入し再起動する。
hw.bge.allow_asf=”0″
…ついでに下記を追加して、通常10秒の起動時選択時間を3秒へ変更して起動高速化
autoboot_delay=”3″
3. perl
perlの置き場所が変わったそうなので、symlinkを貼る
Message from perl5.24-5.24.1.r3:
The /usr/bin/perl symlink has been removed starting with Perl 5.20.
For shebangs, you should either use:
#!/usr/local/bin/perl or #!/usr/bin/env perl
The first one will only work if you have a /usr/local/bin/perl, the second will work as long as perl is in PATH.
ln -s /usr/local/bin/perl5.24.1 /usr/bin/perl
ln -s /usr/local/bin/perl5.24.1 /usr/local/bin/perl
4.