:: Re: [DNG] 64-bit time in new wtmp l…
Top Page
Delete this message
Reply to this message
Author: Lars Noodén
Date:  
To: dng
Subject: Re: [DNG] 64-bit time in new wtmp logs on Excalibur
On 7/27/26 04:29, Olaf Meeuwissen wrote:
> Based on the output of `date +%s`, I'd say it's a UNIX Epoch in
> microseconds.


Thanks. That was it. Odd format.

sqlite> SELECT
        User,
        datetime(max(Login)/1000000, "unixepoch", "localtime")
            AS Date
    FROM wtmp WHERE User='lars';
lars|2026-07-27 03:11:22


/Lars