LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - General (https://www.linuxquestions.org/questions/linux-general-1/)
-   -   Disabling auto conversion to daylight savings time (https://www.linuxquestions.org/questions/linux-general-1/disabling-auto-conversion-to-daylight-savings-time-310000/)

Saxton 04-05-2005 11:35 AM

Disabling auto conversion to daylight savings time
 
Is it possible to disable Red Hat 9.0 from automatically going into daylight savings mode? We have created several LAMP apps that get screwed up when going from standard time to daylight savings time.

Thanks.

Saxton 04-05-2005 04:52 PM

Solved.

Turns out this is a multi-step process in Linux involving creating a text file with new time zone rules, running it against 'zic' ( as in -- zic newRules.tx ), then soft linking the output file to /etc/localtime.

See this link:
http://avi.alkalay.net/linux/docs/Ti....html#tz.linux

about which the author was kind enough to respond, and see 'man zic' for more basic info and some additional examples.

--> Saxton

Sanford Stein 02-11-2009 04:32 PM

The link posted by Saxton contains the text:
"Later we'll see how to enable and disable DST automatically in Linux."
but the actual explanation is not present.

'man zic' shows how to set up a rule to enable automatic daylight savings time conversion but not how to disable a currently existing rule. (For starters, it would be helpful to know where the file of current rules could be found.)

Anyway, if anyone knows a straightforward way to disable automatic setting of daylight savings time, I would be appreciative. We are running RHEL 5.2. (We have a lot of system stuff running at 3AM and want to do the change during our normal downtime window of 9AM-noon
on Sunday.)

Thanks,
Sanford Stein

Saxton 02-12-2009 08:13 AM

Sanford,

Here is part of the document I wrote up to remind myself how to do it:

// create noDST4me file in /usr/share/zoneinfo/America/
// start_file:

# Rule Name From To Type In On At Save Letter/s
Rule NeutronDB 2004 maximum - Apr 1 0:00 0 S

# Zone Name GMTOff Rules/Save Format Until
Zone America/Chicago -6:00 NeutronDB C%sT

// end_file:


// then run from command line:
linux_prompt> zic noDST4me

// This compiles and installs the rule in noDST4me into America/Chicago.

// Since the rule has been set for America/Chicago within noDST4me,
// it is America/Chicago that is soft linked to /etc/localtime:
ln -sf /usr/share/zoneinfo/America/Chicago /etc/localtime

linux_prompt> ls -al /etc/localtime
linux_prompt> /etc/localtime -> /usr/share/zoneinfo/America/Chicago

I would first save the old timezone file by renaming it before overwriting with a new rule declared.

Hope this gets you started.

David


All times are GMT -5. The time now is 08:04 AM.