How to change the date of Linux to UTC/GMT +1?

I need to change the date of my system. I'm running a Linux CentOS 5.6.

# date +%Z
UTC
# date
Thu Oct 6 11:42:45 UTC 2011

How do I change the hour to be UTC/GMT +1?

1

3 Answers

The normal way is to set your timezone. There are a bunch of files stored by region in the following directory:

/usr/share/zoneinfo

Take a look and find the one which matches your region. Then you have to create a symlink from /etc/localtime:

sudo rm /etc/localtime
sudo ln -s /usr/share/zoneinfo/Europe/London /etc/localtime
2

You need to change the timezone.

  • To do it system-wide, symlink /etc/localtime to the apropriate file in /usr/share/zoneinfo. For example:

    ln -sf /usr/share/zoneinfo/Europe/Paris /etc/localtime

    In CentOS, you might need to also edit /etc/sysconfig/clock.

  • To change the timezone just for the current user, set $TZ instead:

    export TZ="Europe/Paris"

Note that date -u must always return correct UTC time.

1

I have tried to do this today, using /usr/share/zoneinfo/Etc/GMT+1 as link. (CentOS 7.0) In a strage way, I've got -1 hour. So I have tried GMT-1, and have now +1 hour. Looks strange, but works for me.

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like