Linux系统如何更改时间时区

Linux系统如何更改时间时区,第1张

对于许多与系统相关的任务和进程,使用正确的时区是必不可少的。例如,cron守护进程使用系统的时区执行cron作业,日志文件中的时间戳基于同一系统的时区。 环境 Centos 8检查现在的时区timedatectl是一个 命令 行实用程序,允许您查看和更改系统的时间和日期。 [root@localhost ~]# timedatectl               Local time: Tue 2020-03-31 16:35:23 CST           Universal time: Tue 2020-03-31 08:35:23 UTC                 RTC time: Tue 2020-03-31 08:35:23                 Time zone: Asia/Shanghai (CST, +0800) System clock synchronized: yes               NTP service: active           RTC in local TZ: no更改时区在更改时区之前,您需要找出要使用的时区名称。要列出所有可用时区,请使用下面的 命令 : [root@localhost ~]# timedatectl list-timezones … Asia/Samarkand Asia/Seoul Asia/Shanghai Asia/Singapore Asia/Srednekolymsk … 然后使用set-timezone选项更改时区,比如更改为Europe/Berlin: [root@localhost ~]# timedatectl set-timezone Europe/Berlin使用创建链接的方式更改时区如果运行的是旧版本的Centos,比如Centos6之前的版本,并且系统上不存在timedatectl命令,则可以通过将/etc/localtime符号链接到/usr/share/zoneinfo目录中的时区文件来更改时区。 查看一下/usr/share/zoninfo下面的时区文件, [root@localhost ~]# ls /usr/share/zoneinfo/ [root@localhost ~]# ls /usr/share/zoneinfo/Asia/ 现在替换时区文件。 [root@localhost ~]# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime [root@localhost ~]# date Tue Mar 31 16:53:59 CST 2020 可以看到已经切换到了CST中国标准时间总结在本文中,使用了两种方式修改时区。一种是使用timedatectl,另一种方式使用创建链接的方式。

就是系统时区 系统时区设置为EDT或者CST 它们相差12小时一般刚安装有个默认时间叫:世界协调时间(Universal Time Coordinated,UTC)你问的是CST China Standard Time UTC+8:00 中国沿海时间(北京时间)date命令 – 显示日期与时间举个例子:显示当前时间:# date三 4月 12 14:08:12 CST 2019 这就是中国北京时间的意思,明白了么《Linux就该这么学》tzselect命令 – 查看设置时区tzselect命令在调用时不需要任何参数,它显示了一个由十几个地理区域组成的列表,人们可以粗略地将其视为大陆。按编号选择一个地理区域后,会显示这个区域的国家和城市列表。

1、more /etc/sysconfig/clock

ZONE="Asia/Shanghai"

2、GMT + 8 = UTC + 8 = CST ,我们的linux系统时间和计算机硬件时间应该是cst时间,上海时区。

3、安装CentOS/RHEL时候,应当取消”系统时钟使用UTC时间”这个选项,如果忘了取消,系统时钟会差8小时

#vi /etc/sysconfig/clock

把UTC=true 修改为 UTC=false,保存后重启即可。

4、#ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

或者

#cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime

5、系统时钟

date -R

6、zdump – This utility prints the current time and date in the specified time zone. Example:

# zdump Japan

Japan Tue Feb 28 17:52:18 2017 JST

# zdump Iceland

Iceland Tue Feb 28 08:52:45 2017 GMT

zdump China

China Tue Feb 28 08:53:02 2017 China

7、CST/GMT/UTC/DST缩写

CST China Standard Time UT+8:00

GMT 格林威治标准时间(Greenwich Mean Time,简称G.M.T.)

UTC 世界协调时间UTC比GMT来得更加精准

DST 夏日节约时间:所谓「夏日节约时间」Daylight Saving Time(简称D.S.T.),

RTC 硬件时钟(Real Time Clock,简称RTC),相对应的系统时钟(System Clock)。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/6193345.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-17
下一篇 2023-03-17

发表评论

登录后才能评论

评论列表(0条)

保存