Hello, Dale.

On Wed, Oct 21, 2015 at 07:57:32PM -0500, Dale wrote:
> Howdy,

> I recently did a upgrade which included glibc.  Now both Firefox and 
> Seamonkey has problems starting.  I have several profiles and some work 
> and some don't.  Using safe-mode works which makes me think the browsers 
> themselves are OK but something else got messed up.  The only package I 
> see that I just updated is glibc that might could cause this issue.  
> This is the recent emerge list from emerge.log:

> 1445463962:  >>> emerge (1 of 13) sys-libs/glibc-2.21-r1 to /
> 1445464046:  === (1 of 13) Cleaning 
> (sys-libs/glibc-2.21-r1::/var/cache/portage/tree/sys-libs/glibc/glibc-2.21-r1.ebuild)
> 1445464046:  === (1 of 13) Compiling/Packaging 
> (sys-libs/glibc-2.21-r1::/var/cache/portage/tree/sys-libs/glibc/glibc-2.21-r1.ebuild)
> 1445464751:  === (1 of 13) Merging 
> (sys-libs/glibc-2.21-r1::/var/cache/portage/tree/sys-libs/glibc/glibc-2.21-r1.ebuild)
> 1445464759:  >>> AUTOCLEAN: sys-libs/glibc:2.2
> 1445464759:  === Unmerging... (sys-libs/glibc-2.20-r2)
> 1445464761:  >>> unmerge success: sys-libs/glibc-2.20-r2
> 1445464768:  === (1 of 13) Post-Build Cleaning 
> (sys-libs/glibc-2.21-r1::/var/cache/portage/tree/sys-libs/glibc/glibc-2.21-r1.ebuild)
> 1445464768:  ::: completed emerge (1 of 13) sys-libs/glibc-2.21-r1 to /

This is nothing to do with your problem, but it might be useful
nonetheless.

I finally got fed up with these "seconds since the epoch" time stamps a
couple of days ago, and wrote a little filter to turn them into readable
time stamps.  Probably there is software around already which does this,
but the effort to write the script was less than that to search for the
existing software.

Here is that script:


#!/usr/bin/awk -f
#########################################################################
# log-emerge:
#
# A filter which converts the time stamp on emerge log files to a human
# readable form.
#
# Written by Alan Mackenzie <a...@muc.de>, 2015-10-20.
# This script is in the public domain.
#
# To use, pipe all or part of a log file through this filter.
#########################################################################
{
    sec = strtonum(substr($1, 1, 11))
    $1 = strftime("%Y-%m-%d %H:%M:%S %z", sec, 0) ":"
    print
}


Don't forget to make it exectuable!  It turns the first of these log
file lines into this:

2015-10-21 21:46:02 +0000: >>> emerge (1 of 13) sys-libs/glibc-2.21-r1 to /

If the timezone field is unwanted, just remove the " %z" from the middle
line of the script.

> Thanks much.

> Dale

> :-)  :-)

-- 
Alan Mackenzie (Nuremberg, Germany).

Reply via email to