Linux下调整时区的方法(linux 调整时区)

操作系统中,时区的设定为用户使用计算机提供很大便利,Linux系统下也有调整时区的方法,本文简要介绍了在 Linux 系统下如何修改

系统时区的方法。

一、首先要确定当前系统的时区。在Linux系统下可以使用‘date’指令查看系统时间,如下图所示:

“`linux

[test@localhost ~]$ date

2019-10-22 11:53:04 CST


二、然后,我们可以通过编辑/etc/sysconfig/clock文件或者使用tzconfig指令来修改时区,如果使用第一种方法,只需要设置所希望使用的时区:

```linux
[test@localhost ~]$ sudo vi /etc/sysconfig/clock
# Used by the /etc/init.d/rc.sysinit script
# options are:
# UTC=true --> Universal Coordinated Time
# UTC=false --> use specified TIMEZONE
# You can also set the timezone to something other than the CONTONENT/ZONE
# format used by TP in tz
# daylight used by the tzselect command

...

# Set this to any valid Olsen timezone name for your region
ZONE="America/New_York"
...

三、如果使用tzconfig指令,可以直接按照提示来改变时区:

“`linux

[test@localhost ~]$ tzconfig

Current default time zone: ‘America/New_York’

Local time is now: Tue Oct 22 11:53:04 EDT 2019.

Universal Time is now: Tue Oct 22 15:53:04 UTC 2019.


可以看到,以上俩种方法都可以改变Linux系统时区,所以本文介绍了通过编辑/etc/sysconfig/clock文件或者使用tzconfig指令来修改系统时区的方法,这样就可以保证用户正确使用系统服务功能。

数据运维技术 » Linux下调整时区的方法(linux 调整时区)