Bug 6638
| Summary: | Init Doesn't Echo Startup messages to terminal | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | woody |
| Component: | initscripts | Assignee: | Bill Nottingham <notting> |
| Status: | CLOSED NOTABUG | QA Contact: | |
| Severity: | low | Docs Contact: | |
| Priority: | low | ||
| Version: | 6.0 | CC: | rvokal |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-11-24 04:33:51 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
woody
1999-11-02 05:47:31 UTC
What boot parameters are you using? 26 [~]@es-dns (admin)> more /etc/lilo.conf
boot=/dev/hda
map=/boot/map
install=/boot/boot.b
prompt
timeout=50
serial=0,9600
append="console=ttyS0,9600n8 console=tty0"
image=/boot/vmlinuz-2.2.5-15
label=linux
root=/dev/hda5
read-only
27 [~]@es-dns (admin)>
This is the unfortunate expected behavior. The problem is that while LILO and the kernel have a notion of multiple nominal consoles that can all be active simultaneously, the /dev/console that program output goes to can only go to one place. One can send it to the serial port, or to a console screen such as /dev/tty0, but not both at once. Apparently, the last console given to the kernel is the one that /dev/console will eventually point to: i.e. append="console=ttyS0,9600n8 console=tty0" and append="console=tty0 console=ttyS0,9600n8" give reverse results. |