November
18
Linux: dmesg convert the date and time to human readable
Newer version of dmesg
dmesg -T
Older versions of dmesg
dmesg|perl -ne ‘BEGIN{$a= time()- qx!cat /proc/uptime!};s/( *)(\d+).\d+/localtime($2 + $a)/e; print $_;’