Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how can off the kernel boot echoo

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
hi
how can off the kernel boot echoo like
xinet [OK]
or other booting echo message and boot my linux box
silent?
regards
lini
 
Hi,

That part of the boot process is not actually the kernel - its the 'init' process which is driven by scripts starting with /etc/rc.d/rc.sysinit . For example, if you default to runlevel 3, that will call all the scripts symbolically linked from /etc/rc.d/init.d to /etc/rc.d/init.d/rc3.d (i.e. rc3.d = runlevel 3 directory). You'd maybe get away with changing the 'parent' script but, if not, you have to change all the scripts in /etc/rc.d/init.d .

The messages you get before the 'OK' stuff are from the kernel itself, i.e. are printk messages. There are a few kernel patches around that suppress these but you'd have to compile a custom kernel to get it to work.

So, in summary - as far as I know there are no 'easy' ways to do what you want.

Hope this helps




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top