You can set the timezone using timedatectl
List time zones
timedatectl list-timezones
Set time zone. Replace America/Chicago with your timezone.
timedatectl set-timezone America/Chicago
You can set the timezone using timedatectl
List time zones
timedatectl list-timezones
Set time zone. Replace America/Chicago with your timezone.
timedatectl set-timezone America/Chicago
The file /etc/localtime is a symbolic link to the timezone. All the timezones are listed in /usr/share/zoneinfo/
Replace America/New_York with the appropriate timezone.
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
You can view the current time zone with the following command
timedatectl
or with date
date +"%Z %z"