시리얼 포트를 이용하여 화면 출력시 GRUB 화면이 안떠요.

direngley의 이미지

리눅스를 사용하고 있고요 장비에 시리얼로 연결해서 싱글모드로 띄우고 싶은데.
처음 커널선택하는 부분이 시리얼로 연결햇을때는 안나와요.
grub 를 사용하는데 커널선택할때 e 누르고 single 싶은데..

시리얼로 연결햇을경우 싱글모드로 부팅하는 방법을 알고싶습니다..

direngley의 이미지

Linux 시리얼 연결

/etc/inittab
co:12345:respawn:/sbin/mingetty ttyS0 CON9600 linux

/etc/grub.conf

추가

serial --unit=0 --speed=9600
terminal --timeout=6 serial console

console=ttyS0,9600

root 로긴 허가
/etc/securetty ttyS0 추가

--------------------------------------
/etc/grub.conf

default=0
timeout=5
splashimage=(hd0,0)/grub/splash.xpm.gz

##추가##
serial --unit=0 --speed=9600
terminal --timeout=6 serial console

hiddenmenu
title Red Hat Enterprise Linux AS (2.6.9-55.ELsmp)
root (hd0,0)
kernel /vmlinuz-2.6.9-55.ELsmp ro root=/dev/VG00/lv00 rhgb quiet console=ttyS0,9600
initrd /initrd-2.6.9-55.ELsmp.img
title Red Hat Enterprise Linux AS-up (2.6.9-55.EL)
root (hd0,0)
kernel /vmlinuz-2.6.9-55.EL ro root=/dev/VG00/lv00 rhgb quiet
initrd /initrd-2.6.9-55.EL.img