On Sat, May 15, 2010 at 3:04 PM, Onkar Mahajan <[email protected]> wrote:
> But some linux distributions do keep the previous boot logs , this will help
> me to know
> where the kernel Paniced ??
>
> Regards,
> Onkar
>
> On Sat, May 15, 2010 at 2:33 PM, arshad hussain <[email protected]>
> wrote:
>>
>> On Sat, May 15, 2010 at 9:50 AM, Onkar Mahajan <[email protected]>
>> wrote:
>> > I want to retain the messages from all the previous boots in the
>> > /var/log/messages
>> > How do I append the messages in /var/log/messages rather than create a
>> > new
>> > file
>> > each time during the boot ?
>> >
>> > Regards,
>> > Onkar
>> >
>> >
>>
>> One way to do it would be. Copy /var/log/message to any file at every
>> shutdown. And use logger command to insert contents of this new file
>> at every startup. This would boil down to ...
>>
>> /* Inside Your shutdown script ( rc6.d ) */
>> $ cat /var/log/message > /tmp/my_logfile
>>
>> /* Inside Your startup script */
>> $ logger -f /tmp/my_logfile
>>
>> Be advised, /var/log/message will not grow indefinitely, after reaching
>> some
>> size it will start "chopping" out the top. Have a look at man pages of
>> logger
>> and syslog.
>>
>> Thanks
>
>

Oh!, I thought your question was "How to append message in /var/log/messages".
I am afraid, It is not clear to me what exactly you are saying.
Guessing, it seems like once
you get a panic, inevitably your kernel reboots and you need some way to find
to find out where. And you want to log it into /var/log/message. If I
got this correct then you have to look at the 'crash' command.

Thanks

--
To unsubscribe from this list: send an email with
"unsubscribe kernelnewbies" to [email protected]
Please read the FAQ at http://kernelnewbies.org/FAQ

Reply via email to