<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: Linux 4.18 Continues Prepping For The Year 2038</title>
	<atom:link href="http://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/</link>
	<description>All about electronics and circuit design</description>
	<lastBuildDate>Sun, 05 Apr 2026 18:35:45 +0000</lastBuildDate>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.9.14</generator>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1858188</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 23 Jul 2025 08:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1858188</guid>
		<description><![CDATA[The Epochalypse: It’s Y2K, But 38 Years Later
https://hackaday.com/2025/07/22/the-epochalypse-y2k-but-38-years-later/

Picture this: it’s January 19th, 2038, at exactly 03:14:07 UTC. Somewhere in a data center, a Unix system quietly ticks over its internal clock counter one more time. But instead of moving forward to 03:14:08, something strange happens. The system suddenly thinks it’s December 13th, 1901. Chaos ensues.

Welcome to the Year 2038 problem. It goes by a number of other fun names—the Unix Millennium Bug, the Epochalypse, or Y2K38. It’s another example of a fundamental computing limit that requires major human intervention to fix. 

Unlike Y2K, which was largely about how dates were stored and displayed, the 2038 problem is rooted in the fundamental way Unix-like systems keep track of time. Since the early 1970s, Unix systems have measured time as the number of seconds elapsed since January 1st, 1970, at 00:00:00 UTC. This moment in time is known as the “Unix epoch.” Recording time in this manner seemed like a perfectly reasonable approach at the time. It gave systems a simple, standardized way to handle timestamps and scheduled tasks.

The trouble is that this timestamp was traditionally stored as a signed 32-bit integer. 

For an unpatched system using a signed 32-bit integer to track Unix time, the immediate consequences could be severe. Software could malfunction when trying to calculate time differences that suddenly span more than a century in the wrong direction, and logs and database entries could quickly become corrupted as operations are performed on invalid dates. Databases might reject “historical” entries, file systems could become confused about which files are newer than others, and scheduled tasks might cease to run or run at inappropriate times.

This isn’t just some abstract future problem. If you grew up in the 20th century, it might sound far off—but 2038 is just 13 years away. In fact, the 2038 bug is already causing issues today. Any software that tries to work with dates beyond 2038—such as financial systems calculating 30-year mortgages—could fall over this bug right now.

The obvious fix is to move from 32-bit to 64-bit timestamps. A 64-bit signed integer can represent timestamps far into the future—roughly 292 billion years in fact, which should cover us until well after the heat death of the universe. Until we discover a solution for that fundamental physical limit, we should be fine.

Indeed, most modern Unix-based operating systems have already made this transition. Linux moved to 64-bit time_t values on 64-bit platforms years ago, and since version 5.6 in 2020, it supports 64-bit timestamps even on 32-bit hardware. OpenBSD has used 64-bit timestamps since May 2014, while NetBSD made the switch even earlier in 2012.

Most other modern Unix filesystems, C compilers, and database systems have switched over to 64-bit time by now. With that said, some have used hackier solutions that kick the can down the road more than fixing the problem for all of foreseeable time. For example, the ext4 filesystem uses a complicated timestamping system involving nanoseconds that runs out in 2446. XFS does a little better, but its only good up to 2486. Meanwhile, Microsoft Windows uses its own 64-bit system tracking 100-nanosecond intervals since 1 January 1601. This will overflow as soon as the year 30,828.

The challenge isn’t just in the operating systems, though. The problem affects software and embedded systems, too. Most things built today on modern architectures will probably be fine where the Year 2038 problem is concerned. However, things that were built more than a decade ago that were intended to run near-indefinitely could be a problem. Enterprise software, networking equipment, or industrial controllers could all trip over the Unix date limit come 2038 if they’re not updated beforehand. There are also obscure dependencies and bits of code out there that can cause even modern applications to suffer this problem if you’re not looking out for them.

The 2038 problem is really a case study in technical debt and the long-term consequences of design decisions. The Unix epoch seemed perfectly reasonable in 1970 when 2038 felt like science fiction. Few developing those systems thought a choice made back then would have lasting consequences over 60 years later. It’s a reminder that today’s pragmatic engineering choices might become tomorrow’s technical challenges.

The good news is that most consumer-facing systems will likely be fine. Your smartphone, laptop, and desktop computer almost certainly use 64-bit timestamps already. The real work is happening in the background—corporate system administrators updating server infrastructure, embedded systems engineers planning obsolescence cycles, and software developers auditing code for time-related assumptions. The rest of us just get to kick back and watch the (ideally) lack of fireworks as January 19, 2038 passes us by.]]></description>
		<content:encoded><![CDATA[<p>The Epochalypse: It’s Y2K, But 38 Years Later<br />
<a href="https://hackaday.com/2025/07/22/the-epochalypse-y2k-but-38-years-later/" rel="nofollow">https://hackaday.com/2025/07/22/the-epochalypse-y2k-but-38-years-later/</a></p>
<p>Picture this: it’s January 19th, 2038, at exactly 03:14:07 UTC. Somewhere in a data center, a Unix system quietly ticks over its internal clock counter one more time. But instead of moving forward to 03:14:08, something strange happens. The system suddenly thinks it’s December 13th, 1901. Chaos ensues.</p>
<p>Welcome to the Year 2038 problem. It goes by a number of other fun names—the Unix Millennium Bug, the Epochalypse, or Y2K38. It’s another example of a fundamental computing limit that requires major human intervention to fix. </p>
<p>Unlike Y2K, which was largely about how dates were stored and displayed, the 2038 problem is rooted in the fundamental way Unix-like systems keep track of time. Since the early 1970s, Unix systems have measured time as the number of seconds elapsed since January 1st, 1970, at 00:00:00 UTC. This moment in time is known as the “Unix epoch.” Recording time in this manner seemed like a perfectly reasonable approach at the time. It gave systems a simple, standardized way to handle timestamps and scheduled tasks.</p>
<p>The trouble is that this timestamp was traditionally stored as a signed 32-bit integer. </p>
<p>For an unpatched system using a signed 32-bit integer to track Unix time, the immediate consequences could be severe. Software could malfunction when trying to calculate time differences that suddenly span more than a century in the wrong direction, and logs and database entries could quickly become corrupted as operations are performed on invalid dates. Databases might reject “historical” entries, file systems could become confused about which files are newer than others, and scheduled tasks might cease to run or run at inappropriate times.</p>
<p>This isn’t just some abstract future problem. If you grew up in the 20th century, it might sound far off—but 2038 is just 13 years away. In fact, the 2038 bug is already causing issues today. Any software that tries to work with dates beyond 2038—such as financial systems calculating 30-year mortgages—could fall over this bug right now.</p>
<p>The obvious fix is to move from 32-bit to 64-bit timestamps. A 64-bit signed integer can represent timestamps far into the future—roughly 292 billion years in fact, which should cover us until well after the heat death of the universe. Until we discover a solution for that fundamental physical limit, we should be fine.</p>
<p>Indeed, most modern Unix-based operating systems have already made this transition. Linux moved to 64-bit time_t values on 64-bit platforms years ago, and since version 5.6 in 2020, it supports 64-bit timestamps even on 32-bit hardware. OpenBSD has used 64-bit timestamps since May 2014, while NetBSD made the switch even earlier in 2012.</p>
<p>Most other modern Unix filesystems, C compilers, and database systems have switched over to 64-bit time by now. With that said, some have used hackier solutions that kick the can down the road more than fixing the problem for all of foreseeable time. For example, the ext4 filesystem uses a complicated timestamping system involving nanoseconds that runs out in 2446. XFS does a little better, but its only good up to 2486. Meanwhile, Microsoft Windows uses its own 64-bit system tracking 100-nanosecond intervals since 1 January 1601. This will overflow as soon as the year 30,828.</p>
<p>The challenge isn’t just in the operating systems, though. The problem affects software and embedded systems, too. Most things built today on modern architectures will probably be fine where the Year 2038 problem is concerned. However, things that were built more than a decade ago that were intended to run near-indefinitely could be a problem. Enterprise software, networking equipment, or industrial controllers could all trip over the Unix date limit come 2038 if they’re not updated beforehand. There are also obscure dependencies and bits of code out there that can cause even modern applications to suffer this problem if you’re not looking out for them.</p>
<p>The 2038 problem is really a case study in technical debt and the long-term consequences of design decisions. The Unix epoch seemed perfectly reasonable in 1970 when 2038 felt like science fiction. Few developing those systems thought a choice made back then would have lasting consequences over 60 years later. It’s a reminder that today’s pragmatic engineering choices might become tomorrow’s technical challenges.</p>
<p>The good news is that most consumer-facing systems will likely be fine. Your smartphone, laptop, and desktop computer almost certainly use 64-bit timestamps already. The real work is happening in the background—corporate system administrators updating server infrastructure, embedded systems engineers planning obsolescence cycles, and software developers auditing code for time-related assumptions. The rest of us just get to kick back and watch the (ideally) lack of fireworks as January 19, 2038 passes us by.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1842866</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Sun, 29 Dec 2024 23:08:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1842866</guid>
		<description><![CDATA[Get ready for epoc time. It&#039;ll actually be a huge issue this time. Epoch time ends on January 19, 2038 at 03:14:07 UTC

Y2K was child&#039;s play compared to this one. 

But with AI coding, and planned obsolescence... Maybe not...

Y2K seems like a joke now, but in 1999 people were really freaking out
https://www.npr.org/2024/12/28/nx-s1-5116271/y2k-year-2000-preparations]]></description>
		<content:encoded><![CDATA[<p>Get ready for epoc time. It&#8217;ll actually be a huge issue this time. Epoch time ends on January 19, 2038 at 03:14:07 UTC</p>
<p>Y2K was child&#8217;s play compared to this one. </p>
<p>But with AI coding, and planned obsolescence&#8230; Maybe not&#8230;</p>
<p>Y2K seems like a joke now, but in 1999 people were really freaking out<br />
<a href="https://www.npr.org/2024/12/28/nx-s1-5116271/y2k-year-2000-preparations" rel="nofollow">https://www.npr.org/2024/12/28/nx-s1-5116271/y2k-year-2000-preparations</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1698263</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Sat, 28 Nov 2020 08:51:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1698263</guid>
		<description><![CDATA[Is the Year 2038 problem the new Y2K bug?
 This article is more than 5 years old
Reports proclaim that the Year 2038 problem is going to cause computerised doom: here’s what you need to know
https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug]]></description>
		<content:encoded><![CDATA[<p>Is the Year 2038 problem the new Y2K bug?<br />
 This article is more than 5 years old<br />
Reports proclaim that the Year 2038 problem is going to cause computerised doom: here’s what you need to know<br />
<a href="https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug" rel="nofollow">https://www.theguardian.com/technology/2014/dec/17/is-the-year-2038-problem-the-new-y2k-bug</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1698262</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Sat, 28 Nov 2020 08:51:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1698262</guid>
		<description><![CDATA[Linux Kernel 5.6 Ready To Fix Year 2038 Problem
https://fossbytes.com/linux-kernel-5-6-fix-year-2038-problem/]]></description>
		<content:encoded><![CDATA[<p>Linux Kernel 5.6 Ready To Fix Year 2038 Problem<br />
<a href="https://fossbytes.com/linux-kernel-5-6-fix-year-2038-problem/" rel="nofollow">https://fossbytes.com/linux-kernel-5-6-fix-year-2038-problem/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1696023</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Wed, 28 Oct 2020 15:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1696023</guid>
		<description><![CDATA[Linux 5.10 Solves the Year 2038 Problem Until 2486 
https://linux.slashdot.org/story/20/10/17/2237236/linux-510-solves-the-year-2038-problem-until-2486?

utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Slashdot%2Fslashdot%2Fto+%28%28Title%29Slashdot+%28rdf

%29%29
Linux 5.10 to make Year 2038 problem the Year 2486 problem
XFS timestamp tweak extends Unix time for a few centuries
https://www.theregister.com/2020/10/19/linux_5_10_y2k38_fixes/

Y2K was caused by systems representing years with two digits and assuming that a year ending with two zeroes would be 1900. Y2K38 is different because it’s derived from Unix and Unix-like systems counting time since January 1st, 1970 in seconds. Come January 19th, 2038, that number will be a bigger value than can be stored as a single 32-bit integer. At which point, things could get interesting.

The need to remedy the Y2K38 problem has been known before the Y2K problem erupted into the public imagination, proved the world’s most expensive and unspectacular piece of proactive maintenance and inevitably spawned truthers who suggest the whole thing was a hoax dreamed up to make work for the computing services industry.]]></description>
		<content:encoded><![CDATA[<p>Linux 5.10 Solves the Year 2038 Problem Until 2486<br />
<a href="https://linux.slashdot.org/story/20/10/17/2237236/linux-510-solves-the-year-2038-problem-until-2486" rel="nofollow">https://linux.slashdot.org/story/20/10/17/2237236/linux-510-solves-the-year-2038-problem-until-2486</a>?</p>
<p>utm_source=feedburner&amp;utm_medium=feed&amp;utm_campaign=Feed%3A+Slashdot%2Fslashdot%2Fto+%28%28Title%29Slashdot+%28rdf</p>
<p>%29%29<br />
Linux 5.10 to make Year 2038 problem the Year 2486 problem<br />
XFS timestamp tweak extends Unix time for a few centuries<br />
<a href="https://www.theregister.com/2020/10/19/linux_5_10_y2k38_fixes/" rel="nofollow">https://www.theregister.com/2020/10/19/linux_5_10_y2k38_fixes/</a></p>
<p>Y2K was caused by systems representing years with two digits and assuming that a year ending with two zeroes would be 1900. Y2K38 is different because it’s derived from Unix and Unix-like systems counting time since January 1st, 1970 in seconds. Come January 19th, 2038, that number will be a bigger value than can be stored as a single 32-bit integer. At which point, things could get interesting.</p>
<p>The need to remedy the Y2K38 problem has been known before the Y2K problem erupted into the public imagination, proved the world’s most expensive and unspectacular piece of proactive maintenance and inevitably spawned truthers who suggest the whole thing was a hoax dreamed up to make work for the computing services industry.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1694274</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Thu, 08 Oct 2020 11:39:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1694274</guid>
		<description><![CDATA[Need 32-bit Linux to run past 2038? When version 5.6 of the kernel pops, you&#039;re in for a treat
I&#039;ve been to the year 3000... Not much has changed, but they&#039;re still patching Linux
https://www.theregister.com/2020/01/30/linux_5_6_2038/

Linux fans intent on holding back the years will be delighted to hear that the upcoming version 5.6 of the kernel should see 32-bit systems hanging on past the dread Y2038.
Arnd Bergmann, an engineer working on the thorny Y2038 problem in the Linux kernel, posted to the mailing list that, yup, Linux 5.6 &quot;should be the first release that can serve as a base for a 32-bit system designed to run beyond year 2038&quot;.]]></description>
		<content:encoded><![CDATA[<p>Need 32-bit Linux to run past 2038? When version 5.6 of the kernel pops, you&#8217;re in for a treat<br />
I&#8217;ve been to the year 3000&#8230; Not much has changed, but they&#8217;re still patching Linux<br />
<a href="https://www.theregister.com/2020/01/30/linux_5_6_2038/" rel="nofollow">https://www.theregister.com/2020/01/30/linux_5_6_2038/</a></p>
<p>Linux fans intent on holding back the years will be delighted to hear that the upcoming version 5.6 of the kernel should see 32-bit systems hanging on past the dread Y2038.<br />
Arnd Bergmann, an engineer working on the thorny Y2038 problem in the Linux kernel, posted to the mailing list that, yup, Linux 5.6 &#8220;should be the first release that can serve as a base for a 32-bit system designed to run beyond year 2038&#8243;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1668061</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Tue, 21 Jan 2020 05:35:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1668061</guid>
		<description><![CDATA[more on the Unix 2038 time 32 bit integer coming apocalypse #y2k38 #y2k #y2038 

Year 2038
Unix time rollover
Main article: Year 2038 problem

The original implementation of the Unix operating system stored system time as a 32-bit signed integer representing the number of seconds past the Unix epoch: midnight UTC, 1 January 1970. This value will roll over on 19 January 2038. This problem has been addressed in most modern Unix and Unix-like operating systems by storing system time as a 64-bit signed integer, although individual applications, protocols, and file formats will still need to be changed as well. 

https://en.wikipedia.org/wiki/Time_formatting_and_storage_bugs#Year_2038

https://www.unixtimeconverter.io/

https://www.unixtimestamp.com/]]></description>
		<content:encoded><![CDATA[<p>more on the Unix 2038 time 32 bit integer coming apocalypse #y2k38 #y2k #y2038 </p>
<p>Year 2038<br />
Unix time rollover<br />
Main article: Year 2038 problem</p>
<p>The original implementation of the Unix operating system stored system time as a 32-bit signed integer representing the number of seconds past the Unix epoch: midnight UTC, 1 January 1970. This value will roll over on 19 January 2038. This problem has been addressed in most modern Unix and Unix-like operating systems by storing system time as a 64-bit signed integer, although individual applications, protocols, and file formats will still need to be changed as well. </p>
<p><a href="https://en.wikipedia.org/wiki/Time_formatting_and_storage_bugs#Year_2038" rel="nofollow">https://en.wikipedia.org/wiki/Time_formatting_and_storage_bugs#Year_2038</a></p>
<p><a href="https://www.unixtimeconverter.io/" rel="nofollow">https://www.unixtimeconverter.io/</a></p>
<p><a href="https://www.unixtimestamp.com/" rel="nofollow">https://www.unixtimestamp.com/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomi Engdahl</title>
		<link>https://www.epanorama.net/blog/2019/02/16/linux-4-18-continues-prepping-for-the-year-2038/comment-page-1/#comment-1667674</link>
		<dc:creator><![CDATA[Tomi Engdahl]]></dc:creator>
		<pubDate>Thu, 16 Jan 2020 08:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.epanorama.net/newepa/?p=181830#comment-1667674</guid>
		<description><![CDATA[Because of the way time is represented in Linux, a signed 32-bit number can&#039;t support times beyond January 19, 2038 after 3:14:07 UTC. This Year 2038 (Y2038 or Y2K38) problem is about the time data type representation. The solution is to use 64-bit timestamps.

https://opensource.com/article/19/1/year2038-problem-linux-kernel]]></description>
		<content:encoded><![CDATA[<p>Because of the way time is represented in Linux, a signed 32-bit number can&#8217;t support times beyond January 19, 2038 after 3:14:07 UTC. This Year 2038 (Y2038 or Y2K38) problem is about the time data type representation. The solution is to use 64-bit timestamps.</p>
<p><a href="https://opensource.com/article/19/1/year2038-problem-linux-kernel" rel="nofollow">https://opensource.com/article/19/1/year2038-problem-linux-kernel</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
