In this short article, we will walk newbies through the various simple ways of checking system timezone in Linux. Time management on a Linux machine especially a production server is always an important aspect of system administration.
There are a number of time management utilities available on Linux such as date and timedatectl commands to get the current timezone of system and synchronize with a remote NTP server to enable an automatic and more accurate system time handling.
Well, let us dive into the different ways of finding out our Linux system timezone.
1. We will start by using the traditional date command to find out present timezone as follows:
$ date
Alternatively, type the command below, where %Z
format prints the alphabetic timezone and %z
prints the numeric timezone:
$ date +"%Z %z"
Note: There are many formats in the date man page that you can make use of, to alter the output of the date command:
$ man date
2. Next, you can likewise use timedatectl, when you run it without any options, the command displays an overview of the system including the timezone like so:
$ timedatectl
More so, try to employ a pipeline and grep command to only filter the timezone as below:
$ timedatectl | grep “Time zone”
Learn how to set timezone in Linux using timedatectl command.
3. In addition, users of Debian and its derivatives can display the content of the file /etc/timezone
using cat utility to check your timezone:
$ cat /etc/timezone
Important: For REHL/CentOS 7 and Fedora 25-22 users, the file /etc/localtime is a symbolic link to the timezone file under the directory /usr/share/zoneinfo/.
However, you can use date or timedatectl command to display the current time and timezone as well.
To change the timezone, create the symbolic link /etc/localtime to the appropriate timezone under /usr/share/zoneinfo/:
$ sudo ln -sf /usr/share/zoneinfo/zoneinfo /etc/localtime
The flag -s
enables creation of a symbolic link, otherwise a hard link is created by default and -f
removes an existing destination file, which in this case is /etc/localtime.
For example, to change the timezone to Africa/Nairobi, issue the command below:
$ sudo ln -sf /usr/share/zoneinfo/Africa/Nairobi /etc/localtime
That’s all! Do not forget to share you thoughts about the article by means of the feedback form below. Importantly, you should look through this time management guide for Linux to get more insight into handling time on your system, it has simple and easy-to-follow examples.
Lastly, always remember to stay tunned to Tecmint for the latest and interesting Linux stuff.
Any suggestion where should I check further? All settings seem correct? It looks like there is an extra character at the end of America/Chicago.
ERROR:
tzone_read_system: no match found for America/Chicago^?
Here are my current settings
@Ketan
Which application is showing this error? And which Linux distribution are you running?
CentOS Linux release 7.7.1908 (Core).
We just fixed the issue by “rerunning” the timezone. The log showed bad characters at the end,
America/Chicago^? (^?)
.We ran tzselect and then chose options 2, 49, 11 for Chicago. Gracefully rebooted the server “shutdown -r now”
Thank you, Aaron, for your reply.
@Ketan
Great! Many thanks for sharing the solution. This will be of benefit to readers in the future.
The formatting on your
"%Z %z"
example is a bit off. When your text is displayed, the usual, plain double quotes(")
are replaced with “pretty” ones(”)
. When I pasted your example into my terminal, I only received errors. You should format your example as:(Here’s hoping that when I post this comment, the website doesn’t replace my simple quotes with pretty ones!)
Yes, my simple quotes were replaced with pretty ones. That’s not good for displaying things on a technical website. You should see about disabling that feature.
@Lance,
I understand your concerns, we’ve corrected the commands with correct quotes..
On Centos 7 there’s no “clock” under /etc/sysconfig. And neither is there a /etc/timezone, which, from what you’re saying, should exist on most or all linux distributions.
@lethargo
Yap, you can use /etc/localtime instead of /etc/timezone. Thanks for mentioning that.
Indeed, but /etc/localtime is not plain text, it is a binary file. To be more specific, it is a symbolic link to a binary file found in /usr/share/zoneinfo.
So you couldn’t simply grep it in Centos :) You simply create a symbolic link to whatever timezone you want and then you can use date or timedatectl to see the current clock.
@lethargos
Once again, many thanks for the vital insight into checking and managing timezone on RHEL/CentOS 7, this will be very helpful to users out there.
You’re welcome, but shouldn’t you update the article accordingly, so that other users actually know? There’s a higher chance that they’ll read the article than the comments.
@lethargos
As you usefully suggested, we have updated the article to include the correct way of setting and checking timezone in REHL 7/CentOS 7/Fedora 25-22 systems.
Many thanks for always following us and offering constructive thoughts.
Hello,
How can I change the timezone and how can i set the time period of 12 hrs instead of 24hrs?
@Prashant,
Please follow the below article to set your system timezone and even you can synchronize time..
https://www.tecmint.com/set-time-timezone-and-synchronize-time-using-timedatectl-command/