GRUBでシリアルコンソールを使って起動

Linux をサーバ機などでモニタ無しで運用する場合、
シリアルコンソールから起動(起動確認)をすることが必要となる。

参考
http://www.nu-chon.org/w/index.php?Linux%A4%CE%A5%B7%A5%EA%A5%A2%A5%EB%A5%B3%A5%F3%A5%BD%A1%BC%A5%EB%B2%BD


Ubuntu + GRUB では /boot/grub/menu.lst を弄ってやればよい。(赤字部分を追加)

(...)


## ## End Default Options ##


serial --unit=0 --speed=9600 --word=8 --parity=no --stop=1
terminal --dump --timeout=30 serial console


title Ubuntu, kernel 2.6.15-28-386 on Serial Console
root (hd0,0)
kernel /boot/vmlinuz-2.6.15-28-386 root=/dev/sda1 ro console=ttyS0,9600n8
initrd /boot/initrd.img-2.6.15-28-386
savedefault
boot


title Ubuntu, kernel 2.6.15-28-386
root (hd0,0)
kernel /boot/vmlinuz-2.6.15-28-386 root=/dev/sda1 ro quiet splash
initrd /boot/initrd.img-2.6.15-28-386
savedefault
boot


(...)