I want to find place to where Linux writes all boot messages. You know:
facility one [STARTED]
facility two [STARTED]
facility three [FAILED]
I serched with
find . -print0 | xargs -0 grep -i "words from boot messages"
in /var/log/, but not found any thing...
I have CentOS 5.5.
For example at boot time I had: "Determining IP information for eth0... failed; no link present. Check cable?"
I don't care about error specificaly, but I can't find any log that holds this error.
When I do dmesg | grep "no link present" I get nothing
Thank you for ahead.