How do I change the timezone on a RHEL5 system? I'm reading the instructions here - http://www.cyberciti.biz/faq/howto-linux-unix-change-setup-timezone-tz-variable/

But they seem very bold (altering the /etc/localtime file).

Is this an acceptable practice (steps from link below):

Generic procedure to change timezone
Change directory to /etc
# cd /etc
Create a symlink to file localtime:
# ln -sf /usr/share/zoneinfo/EST localtime
link|improve this question

71% accept rate
feedback

2 Answers

up vote 0 down vote accepted

Yes, this is exactly what I did to an RHEL5 box two days ago, and it worked fine (with the difference that I hard-linked the file, not soft-linked, but I don't see there should be much difference).

If there is already a localtime file in place it is perhaps best to move the old one aside and put the new one in place in one operation:

cd /etc; mv localtime localtime.orig; ln /usr/share/zoneinfo/EST localtime
link|improve this answer
Did that - seems to work out fine... – matt74tm Oct 19 '10 at 13:22
1  
Glad to hear it! – MadHatter Oct 19 '10 at 13:40
feedback

It works, but the traditional RedHat way is to use a system-config-* utility. In this case, it'd be system-config-time.

timeconfig also does the job.

link|improve this answer
Your point is copmpletely fair and accurate, but I tend to prefer to do things in a non-distro-specific way if at all possible. The recipe above should work on all linuces, and probably solaris and a few other POSIXy unices too. – MadHatter Oct 25 '10 at 8:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.