How can I display the current time configuration, like the time zone, in Ubuntu?
7 Answers
I don't know of a single file, but this may give you the info needed:
cat /etc/timezone
grep UTC /etc/default/rcS
date
# hardware clock
sudo hwclock --show
-
I didn't spot the
hwclock
bit at first - but that was actually what I was looking for– icc97Commented Jan 7, 2016 at 20:06
Best example (IMHO) using timedatectl
(in command-line/terminal):
$ timedatectl
Local time: Thu 2014-07-24 19:51:23 IST
Universal time: Thu 2014-07-24 14:21:23 UTC
Timezone: Asia/Kolkata (IST, +0530)
NTP enabled: no
NTP synchronized: no
RTC in local TZ: no
DST active: n/a
Visit the manpage for more settings and further information.
-
If your system is missing
timedatectl
: askubuntu.com/q/622721/132098– AbdullCommented Dec 18, 2015 at 11:25 -
1Additional info that may also be useful: to change time zone do "sudo timedatectl set-timezone America/Los_Angeles" (use your own time zone instead of America/Los_Angeles. Timezones can be found with timedatectl list-timezones)– mbernaCommented Dec 14, 2021 at 20:03
Check out info date
, and for example date +'%z'
For the time zone, you can use geolocation:
$ curl https://ipapi.co/timezone
America/Chicago
Or:
$ curl http://ip-api.com/line?fields=timezone
America/Chicago
If you need a formatted area and time zone, you can use:
$ grep `date +%Z` /etc/timezone
Etc/UTC
If you have PowerShell installed:
PS> Get-TimeZone
Id : Europe/Vilnius
DisplayName : (UTC+02:00) Eastern European Standard Time
StandardName : Eastern European Standard Time
DaylightName : Eastern European Summer Time
BaseUtcOffset : 02:00:00
SupportsDaylightSavingTime : True
I suspect this won't be popular answer in a Linux community, but I really like the verb-noun convention. It makes it easier for me to remember commands, and it will also work on all distributions with PowerShell installed :)
cat /etc/sysconfig/clock
look like ?