Jonathan Davis wrote:
Is there any way to look at what is printed out during the boot
process AFTER the system is booted?  I'd like to be able to better see
what "FAIL"'s there were so that I can fix them.  However, I have been
unable to find any logs in my system that present such information and
I have been unable to find any information online on where such a log
would be or how it could be created if it is not created by default.

I would have thought that /var/log/boot.log would have been it, but no
such luck, and I can't find anything in the kernel configuration that
would affect this.  Any help on being able to see the what happened
during the boot, post-boot, would be appreciated.

- Jonathan Davis
_______________________________________________
Clfs-support mailing list
[email protected]
http://lists.cross-lfs.org/cgi-bin/mailman/listinfo/clfs-support
Go into /etc/rc.d/init.d/functions
Find the section starting with boot_log and change it to this, also make sure logger is in the /bin

boot_log()
{
       if [ -f /bin/logger ]; then
               /bin/logger -p local2.info -t bootlog "[EMAIL PROTECTED]"
       else
               return 0
       fi
}

_______________________________________________
Clfs-support mailing list
[email protected]
http://lists.cross-lfs.org/cgi-bin/mailman/listinfo/clfs-support

Reply via email to