<?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"
	>
<channel>
	<title>Comments on: Daylight Saving Time - The Year 2007 Problem</title>
	<atom:link href="http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/</link>
	<description>Notes from the edge</description>
	<pubDate>Mon, 21 Jul 2008 00:52:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Markus Mayer</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-27306</link>
		<dc:creator>Markus Mayer</dc:creator>
		<pubDate>Mon, 29 Oct 2007 20:25:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-27306</guid>
		<description>For what it's worth: I just discovered that a box of mine running NetBSD 3.0.2 was displaying the &lt;em&gt;wrong&lt;/em&gt; time (already switched back to standard time), despite the fact that NetBSD claims to have been correct since 2005.

Turns out that the &lt;em&gt;US time zones&lt;/em&gt; are correct, but the &lt;em&gt;Canadian ones&lt;/em&gt; weren't: I use America/Vancouver as time zone on that box. In order to fix that, I grabbed the 'northamerica' time zone source file from the 3.1 release:

$ cd /usr/src/share/zoneinfo
$ cvs up -r netbsd-3-1-1-RELEASE  northamerica
$ su -
# make install

Now, everything's correct.

A less intrusive alternative would be to use the US equivalent of the Canadian time zone (so using America/Los_Angeles would have worked, too).</description>
		<content:encoded><![CDATA[<p>For what it&#8217;s worth: I just discovered that a box of mine running NetBSD 3.0.2 was displaying the <em>wrong</em> time (already switched back to standard time), despite the fact that NetBSD claims to have been correct since 2005.</p>
<p>Turns out that the <em>US time zones</em> are correct, but the <em>Canadian ones</em> weren&#8217;t: I use America/Vancouver as time zone on that box. In order to fix that, I grabbed the &#8216;northamerica&#8217; time zone source file from the 3.1 release:</p>
<p>$ cd /usr/src/share/zoneinfo<br />
$ cvs up -r netbsd-3-1-1-RELEASE  northamerica<br />
$ su -<br />
# make install</p>
<p>Now, everything&#8217;s correct.</p>
<p>A less intrusive alternative would be to use the US equivalent of the Canadian time zone (so using America/Los_Angeles would have worked, too).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PaoFueye</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24486</link>
		<dc:creator>PaoFueye</dc:creator>
		<pubDate>Wed, 10 Oct 2007 18:28:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24486</guid>
		<description>Bill,

Thank you very much.  Your information was very helpful.</description>
		<content:encoded><![CDATA[<p>Bill,</p>
<p>Thank you very much.  Your information was very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24440</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Wed, 10 Oct 2007 03:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24440</guid>
		<description>Pao Fueye,

Look here for NetBSD:

http://mail-index.netbsd.org/netbsd-announce/2007/02/27/0000.html

You should be OK.:

Daylight Saving Time Changes: Nothing new for NetBSD

Daylight Saving Time (DST) was extended in a number of countries starting
in 2007.  For example, beginning in 2007, most of the USA will begin
Daylight Saving Time at 2:00 a.m. on the second Sunday in March and revert
to standard time on the first Sunday in November.  While this has caused a
number of software vendors a lot of headache, NetBSD has shipped with the
appropriate timezone files for years; even though changes to timezones
in general and DST rules in particular happen a few times a year
throughout the world, the NetBSD operating system has of course always
provided accurate and up to date zone files as soon as possible.

The Energy Policy Act of 2005 was signed into USA law on August 8, 2005.
The updated tzdata package (tzdata2005m) was imported into our source tree
on August 29, 2005, and was pulled up into the netbsd-2 (September 5,
2005), netbsd-2-0 and netbsd-3 (both September 6, 2005) branches and is
thus present in NetBSD 2.0.3, 2.1, 3.0, 3.0.1, 3.1 and the 4.x branches.

In other words, if you're running one of these systems, no action on your
part is required;  your system is already prepared for the updated
timezones and will continue to show the correct local time.


If you are running an older system, we strongly encourage you to update to
one of these releases.  However, we do recognize that some organizations
may have the need to continue to run older releases.  You can update those
systems as follows:

  # cd src
  # cvs update share/zoneinfo
  # make install

Per default, /etc/localtime is a symbolic link to the actual timezone file
under /usr/share/zoneinfo.  However, if on your system / and /usr are not
on the same partition, you need to copy the zone file from
/usr/share/zoneinfo to /etc/localtime to make sure that services starting
before /usr is mounted get the correct time.

After installing the new zonefiles and making sure that /etc/localtime
points to the correct file, you need to restart any and all running
services that rely on the correct local time (such as crond, syslogd
etc.): /etc/localtime is only read once when the application starts up,
and any changes to that file are not picked up until the application is
restarted.

A reboot is not required, however, it is an easy way to make sure that all
services are restarted and pick up the new information.</description>
		<content:encoded><![CDATA[<p>Pao Fueye,</p>
<p>Look here for NetBSD:</p>
<p><a href="http://mail-index.netbsd.org/netbsd-announce/2007/02/27/0000.html" rel="nofollow">http://mail-index.netbsd.org/netbsd-announce/2007/02/27/0000.html</a></p>
<p>You should be OK.:</p>
<p>Daylight Saving Time Changes: Nothing new for NetBSD</p>
<p>Daylight Saving Time (DST) was extended in a number of countries starting<br />
in 2007.  For example, beginning in 2007, most of the USA will begin<br />
Daylight Saving Time at 2:00 a.m. on the second Sunday in March and revert<br />
to standard time on the first Sunday in November.  While this has caused a<br />
number of software vendors a lot of headache, NetBSD has shipped with the<br />
appropriate timezone files for years; even though changes to timezones<br />
in general and DST rules in particular happen a few times a year<br />
throughout the world, the NetBSD operating system has of course always<br />
provided accurate and up to date zone files as soon as possible.</p>
<p>The Energy Policy Act of 2005 was signed into USA law on August 8, 2005.<br />
The updated tzdata package (tzdata2005m) was imported into our source tree<br />
on August 29, 2005, and was pulled up into the netbsd-2 (September 5,<br />
2005), netbsd-2-0 and netbsd-3 (both September 6, 2005) branches and is<br />
thus present in NetBSD 2.0.3, 2.1, 3.0, 3.0.1, 3.1 and the 4.x branches.</p>
<p>In other words, if you&#8217;re running one of these systems, no action on your<br />
part is required;  your system is already prepared for the updated<br />
timezones and will continue to show the correct local time.</p>
<p>If you are running an older system, we strongly encourage you to update to<br />
one of these releases.  However, we do recognize that some organizations<br />
may have the need to continue to run older releases.  You can update those<br />
systems as follows:</p>
<p>  # cd src<br />
  # cvs update share/zoneinfo<br />
  # make install</p>
<p>Per default, /etc/localtime is a symbolic link to the actual timezone file<br />
under /usr/share/zoneinfo.  However, if on your system / and /usr are not<br />
on the same partition, you need to copy the zone file from<br />
/usr/share/zoneinfo to /etc/localtime to make sure that services starting<br />
before /usr is mounted get the correct time.</p>
<p>After installing the new zonefiles and making sure that /etc/localtime<br />
points to the correct file, you need to restart any and all running<br />
services that rely on the correct local time (such as crond, syslogd<br />
etc.): /etc/localtime is only read once when the application starts up,<br />
and any changes to that file are not picked up until the application is<br />
restarted.</p>
<p>A reboot is not required, however, it is an easy way to make sure that all<br />
services are restarted and pick up the new information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: PaoFueye</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24416</link>
		<dc:creator>PaoFueye</dc:creator>
		<pubDate>Tue, 09 Oct 2007 20:24:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-24416</guid>
		<description>I am looking for a DST patch for NETBSD.  Anyone can give me a tip??</description>
		<content:encoded><![CDATA[<p>I am looking for a DST patch for NETBSD.  Anyone can give me a tip??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Taehoon&#8217;s Blog &#187; Blog Archive &#187; Daylight Savings Change in the U.S. 2007</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4860</link>
		<dc:creator>Taehoon&#8217;s Blog &#187; Blog Archive &#187; Daylight Savings Change in the U.S. 2007</dc:creator>
		<pubDate>Fri, 16 Mar 2007 06:23:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4860</guid>
		<description>[...] References: NIST Time and Frequency FAQ Information about WWVB Radio Controlled Clocks Microsoft&#8217;s Help and Support Regarding Apple&#8217;s Daylight Savings Time change in 2007 Energy Policy Act of 2005 Major IT vendor links from edgeblog [...]</description>
		<content:encoded><![CDATA[<p>[...] References: NIST Time and Frequency FAQ Information about WWVB Radio Controlled Clocks Microsoft&#8217;s Help and Support Regarding Apple&#8217;s Daylight Savings Time change in 2007 Energy Policy Act of 2005 Major IT vendor links from edgeblog [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dan S</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4536</link>
		<dc:creator>Dan S</dc:creator>
		<pubDate>Mon, 12 Mar 2007 01:47:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4536</guid>
		<description>Just an old retired IT guy here.  I thought I'd be OK here at home with my home PC.  What freaked me out is that NONE of the available online time-servers have been updated today for auto-updating PC time!  This is at 8:46 CST on March 11!  Unbelievable...</description>
		<content:encoded><![CDATA[<p>Just an old retired IT guy here.  I thought I&#8217;d be OK here at home with my home PC.  What freaked me out is that NONE of the available online time-servers have been updated today for auto-updating PC time!  This is at 8:46 CST on March 11!  Unbelievable&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nathan Stanley</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4323</link>
		<dc:creator>Nathan Stanley</dc:creator>
		<pubDate>Fri, 09 Mar 2007 09:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-4323</guid>
		<description>Hi Aleesa. Follow the link that Matt gave. There's a link (http://www.scriptlogic.com/dst) to Scriptlogic site where they collected some info on this issue. A good explanatory set notes on the problem, who can be affected by it and the way they provide to solve it. Thanks, Matt!</description>
		<content:encoded><![CDATA[<p>Hi Aleesa. Follow the link that Matt gave. There&#8217;s a link (http://www.scriptlogic.com/dst) to Scriptlogic site where they collected some info on this issue. A good explanatory set notes on the problem, who can be affected by it and the way they provide to solve it. Thanks, Matt!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SysAdmin</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3893</link>
		<dc:creator>SysAdmin</dc:creator>
		<pubDate>Mon, 05 Mar 2007 05:39:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3893</guid>
		<description>1).  For your Windows machines, use the tool available at www.sharpebusinesssolutions.com/dst2007.  Don't forget that any MS Exchange/Outlook patching that you need to do must be timed tightly with your Windows server AND client operating system patching.
2).  All versions Java are a potential problem, as are many commonly employed Microsoft products.  To quickly get your head around which software in your environment might require attention, navigate to http://www.calconnect.org/ and click on Daylight Saving Time.</description>
		<content:encoded><![CDATA[<p>1).  For your Windows machines, use the tool available at <a href="http://www.sharpebusinesssolutions.com/dst2007" rel="nofollow">http://www.sharpebusinesssolutions.com/dst2007</a>.  Don&#8217;t forget that any MS Exchange/Outlook patching that you need to do must be timed tightly with your Windows server AND client operating system patching.<br />
2).  All versions Java are a potential problem, as are many commonly employed Microsoft products.  To quickly get your head around which software in your environment might require attention, navigate to <a href="http://www.calconnect.org/" rel="nofollow">http://www.calconnect.org/</a> and click on Daylight Saving Time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CJ</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3873</link>
		<dc:creator>CJ</dc:creator>
		<pubDate>Mon, 05 Mar 2007 01:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3873</guid>
		<description>Well-written article in today's Boston Globe explains what motivated the Democrat US Representative Markey to propose this change and press it through Congress to approval.

http://www.boston.com/news/nation/articles/2007/03/04/a_new_daylight_is_dawning/

A surprising side-effect I've heard of is for businesses (e.g., clinics) that use date of birth to verify personal identity.  A midnight hour is sometimes stored or defaulted for DOB, and if an application-wide date-correction routine isn't carefully tailored it can adjust DOB for those with birthdates in the 4-week window from March - April to appear as one day early.

The daylight savings time switch to a March start is a major hassle for appointment scheduling systems.</description>
		<content:encoded><![CDATA[<p>Well-written article in today&#8217;s Boston Globe explains what motivated the Democrat US Representative Markey to propose this change and press it through Congress to approval.</p>
<p><a href="http://www.boston.com/news/nation/articles/2007/03/04/a_new_daylight_is_dawning/" rel="nofollow">http://www.boston.com/news/nation/articles/2007/03/04/a_new_daylight_is_dawning/</a></p>
<p>A surprising side-effect I&#8217;ve heard of is for businesses (e.g., clinics) that use date of birth to verify personal identity.  A midnight hour is sometimes stored or defaulted for DOB, and if an application-wide date-correction routine isn&#8217;t carefully tailored it can adjust DOB for those with birthdates in the 4-week window from March - April to appear as one day early.</p>
<p>The daylight savings time switch to a March start is a major hassle for appointment scheduling systems.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aleesa</title>
		<link>http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3690</link>
		<dc:creator>Aleesa</dc:creator>
		<pubDate>Fri, 02 Mar 2007 20:45:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.edgeblog.net/2007/daylight-saving-time-the-year-2007-problem/#comment-3690</guid>
		<description>Why!  Will somebody just tell me why it was changed?  I want to know if the daylight is starting earlier than usual or if things have always been the same.

Is it getting lighter out earlier than it use to?  That's my question.  Does anyone have any information on this?  Or, is there a website that explains it all? 

Thank you!</description>
		<content:encoded><![CDATA[<p>Why!  Will somebody just tell me why it was changed?  I want to know if the daylight is starting earlier than usual or if things have always been the same.</p>
<p>Is it getting lighter out earlier than it use to?  That&#8217;s my question.  Does anyone have any information on this?  Or, is there a website that explains it all? </p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.286 seconds -->
