########################################################## 2005-06-22 Kurzanleitung Serielle Konsole für Linux 2.6 # http://www.tldp.org/HOWTO/Remote-Serial-Console-HOWTO/ ########################################################## # Kernelconfiguration 2.6er DEVICE DRIVER --> Character devices --> Serial drivers --> [*] 8250/16550 and compatible serial support [*] Console on 8250/16550 and compatible serialport (4) Maximum number of non-legacy 8250/16550 serial ports [ ] Extended 8250/16550 serial driver options --- Non-8250 serial port support [ ] Digi International NEO PCI Support ########################################################## # /etc/inittab mit einem Login versehen T0:2345:respawn:/sbin/getty -L ttyS0 9600 vt100 T1:2345:respawn:/sbin/getty -L ttyS1 9600 vt100 # /etc/lilo.conf mit der Serial Option versehen # ttyS0 = com1 / ttyS1 = com2 # Hier ein Beispiel für com2 # serial= serial=1,9600n8 timeout=100 ########################################################## # # Boot up Linux by default. # # default=Rescue default=Linux image=/vmlinuz label=Linux read-only append="console=tty0 console=ttyS1,9600n8" ########################################################## # # Grub mitteilen das es eine Serielle Konsole # und eine Tastatur hat # # /boot/grub/menu.lst # # unit=0 com1 / unit=1 com2 serial --unit=1 --speed=9600 --word=8 --parity=no --stop=1 terminal --timeout=10 serial console