Martin McCormick wrote: > I appear to be using grub, not grub2. One of the > articles I found had an example of how to use grub rescue that all > works except, of course, for the actual booting of the kernel. > > There's an extra little wrinkle in that, as a computer > warier who happens to be blind, grub isn't really accessible in > that you can not get direct access to it via a serial port and > terminal, say, from another computer that is actually working.
in /boot/grub/menu.lst serial --unit=0 --speed=9600 --word=8 --parity=no --stop=1 terminal serial (yes, that's two lines) I hope that helps. If you want the option of either serial or console access, replace the second line with terminal --timeout=10 serial console The default will be serial, but if you press a key on the console within 10 seconds, it will go there instead. -dsr-