Difference between revisions of "CentOS 7.x Change system timezone"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>CentOS_7.x_system_administration|CentOS 7.x system administration</yambe:breadcrumb> =CentOS 7.x Change system timezone= To set correct timezone in system o...")
 
m
Line 1: Line 1:
<yambe:breadcrumb>CentOS_7.x_system_administration|CentOS 7.x system administration</yambe:breadcrumb>
<yambe:breadcrumb>CentOS_7.x_system_administration|CentOS 7.x system administration</yambe:breadcrumb>
=CentOS 7.x Change system timezone=
=CentOS 7.x Change system timezone=
'''There is newer article on this at [[CentOS 8.x Change system timezone]]'''


To set correct timezone in system one can use following steps:
To set correct timezone in system one can use following steps:

Revision as of 07:14, 9 February 2021

<yambe:breadcrumb>CentOS_7.x_system_administration|CentOS 7.x system administration</yambe:breadcrumb>

CentOS 7.x Change system timezone

There is newer article on this at CentOS 8.x Change system timezone

To set correct timezone in system one can use following steps:

    rm -f /etc/localtime
    ln -s /usr/share/zoneinfo/<desired-timezone> /etc/localtime

For example if desired timezone is Asia/Kolkata then use:

    rm -f /etc/localtime
    ln -s /usr/share/zoneinfo/Asia/Kolkata /etc/localtime