On Wed, Dec 22, 2010 at 2:37 PM, Asif Iqbal <[email protected]> wrote: > with grub my menu.lst has lines like this > > serial --unit=0 --speed=115200 --word=8 --parity=no --stop=1 > terminal --timeout=15 serial console > > kernel /boot/vmlinuz-2.6.32-24-generic-pae > root=UUID=d268da1e-ec8e-45f7-a348-6bff3ecd5c02 ro console=tty0 > console=ttyS0,9600n8 > > > so when the system boots I am asked to "Press Any Key", so if I am in > VGA it goes to VGA and if I am in RS232 (serial port) the boot > process shows up in there. And grub shows up in both tty0 and ttyS0 > > how do I achieve the same thing with grub2 ?
looks like making the following changes followed by `update-grub' did it #GRUB_HIDDEN_TIMEOUT=5 GRUB_HIDDEN_TIMEOUT_QUIET=false GRUB_TIMEOUT=10 GRUB_CMDLINE_LINUX_DEFAULT="" GRUB_CMDLINE_LINUX="console=tty0 console=ttyS0,9600n8" GRUB_TERMINAL=console GRUB_SERIAL_COMMAND="serial --unit=0 --speed=9600 --word=8 --parity=no --stop=1" > > > > -- > Asif Iqbal > PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu > A: Because it messes up the order in which people normally read text. > Q: Why is top-posting such a bad thing? > -- Asif Iqbal PGP Key: 0xE62693C5 KeyServer: pgp.mit.edu A: Because it messes up the order in which people normally read text. Q: Why is top-posting such a bad thing? -- ubuntu-server mailing list [email protected] https://lists.ubuntu.com/mailman/listinfo/ubuntu-server More info: https://wiki.ubuntu.com/ServerTeam
