You can change Linux Timezone via bash command line easily.
When you run the command below, you see which timezone file linked to the localtime symlink.
ls -l /etc/localtime
[root@rhel75 ~]# timedatectl | grep -i 'time zone' Time zone: Europe/Istanbul (+03, +0300)
When you run commands below respectively, active timezone on run-time has been changed. Also let’s copy current localtime file as backup plan.
# mv /etc/localtime /etc/localtime.yedek # ln -s /usr/share/zoneinfo/Europe/Istanbul /etc/localtime
For permanent change, we need to do the same change on /etc/sysconfig/clock file.
# cat /etc/sysconfig/clock ZONE="Europe/Istanbul" UTC=true ARC=false
You can use timedatectl utility to display current timezone information as an alternative to the symlink method.
[root@rhel75 ~]# timedatectl set-timezone Europe/Istanbul
You can reach out the full list of timezone information using link below;
https://en.wikipedia.org/wiki/List_of_tz_database_time_zones
Avaya SAL Gateway (Secure Access Link) is a remote connectivity solution used by Avaya to provide remote support for its… Read More
DALI is a communication protocol that is used for the automation of lighting, which is not new at all. It… Read More
Communication requires being in sync just like an orchestra. What happens when the bass guitar in band is not sync… Read More
You have access to many different Linux / Unix servers during the day, you are in the IT department, remembering… Read More
CAR PC in car is now old school and I decided to mount an iPad mini into the dashboard. (more…) Read More
I've been waiting to write about my project "Carputer", for a long time. I tried to share all details step… Read More