<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://beardedmaker.com/wiki/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages</id>
		<title>TheBeard Science Project Wiki - New pages [en]</title>
		<link rel="self" type="application/atom+xml" href="https://beardedmaker.com/wiki/index.php?feed=atom&amp;namespace=0&amp;title=Special%3ANewPages"/>
		<link rel="alternate" type="text/html" href="https://beardedmaker.com/wiki/index.php?title=Special:NewPages"/>
		<updated>2026-05-14T07:39:54Z</updated>
		<subtitle>From TheBeard Science Project Wiki</subtitle>
		<generator>MediaWiki 1.27.4</generator>

	<entry>
		<id>https://beardedmaker.com/wiki/index.php?title=Dmesg_Real_Dates/TImestamps</id>
		<title>Dmesg Real Dates/TImestamps</title>
		<link rel="alternate" type="text/html" href="https://beardedmaker.com/wiki/index.php?title=Dmesg_Real_Dates/TImestamps"/>
				<updated>2021-01-21T05:46:57Z</updated>
		
		<summary type="html">&lt;p&gt;Beard: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Dmesg shows timestamps in seconds since the last boot, and newer versions of dmesg take the &amp;quot;-T&amp;quot; parameter like &amp;lt;code&amp;gt;dmesg -T&amp;lt;/code&amp;gt; to display dates in human readable format, but in case your server is running an old version here's a great bash function that provides that functionality. I didn't write this I stole it from someone else. Keep in mind that if the system has been put to sleep, suspended, or hibernated then the timestamps will be inaccurate.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;source lang=&amp;quot;sh&amp;quot;&amp;gt;&lt;br /&gt;
dmesg_with_human_timestamps () {&lt;br /&gt;
    $(type -P dmesg) &amp;quot;$@&amp;quot; | perl -w -e 'use strict;&lt;br /&gt;
        my ($uptime) = do { local @ARGV=&amp;quot;/proc/uptime&amp;quot;;&amp;lt;&amp;gt;}; ($uptime) = ($uptime =~ /^(\d+)\./);&lt;br /&gt;
        foreach my $line (&amp;lt;&amp;gt;) {&lt;br /&gt;
            printf( ($line=~/^\[\s*(\d+)\.\d+\](.+)/) ? ( &amp;quot;[%s]%s\n&amp;quot;, scalar localtime(time - $uptime + $1), $2 ) : $line )&lt;br /&gt;
        }'&lt;br /&gt;
}&lt;br /&gt;
alias dmesg=dmesg_with_human_timestamps&lt;br /&gt;
&amp;lt;/source&amp;gt;&lt;/div&gt;</summary>
		<author><name>Beard</name></author>	</entry>

	</feed>