Tag: update timezone

  • Setting timezone and synchronizing time with NTP

    Check available timezones in your server by executing the command below. ls /usr/share/zoneinfo/ Then simply delete the current timezone: rm /etc/localtime Create a symbolic link to /etc/localtime. ln –s /usr/share/zoneinfo/Asia/Singapore /etc/localtime If symblolic link not working, then you may use a copy command. cp /usr/share/zoneinfo/Asia/Singapore /etc/localtime Install NTP yum install ntp See all the timezones…