欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Linux设置系统时间

程序员文章站 2022-04-29 19:54:36
...

1、系统时间与硬件时间

       在Linux中有硬件时钟与系统时钟两种时钟。硬件时钟是指主机板上的时钟设备,也就是通常可在BIOS画面设定的时钟。系统时钟则是指kernel中的时钟。所有Linux相关指令与函数都是读取系统时钟的设定。因为存在两种不同的时钟,那么它们之间就会存在差异。当Linux启动时,系统时钟会去读取硬件时钟的设定,之后系统时钟即独立运作。

2、date设置时间

date -s可以用于设置系统时间,用date命令对系统时间进行设置后,并不会去修改硬件时钟,所以系统重启后,系统时间还算会去读取硬件时间,这就是为何date设置失效的原因。

设置系统时间
[[email protected]_0_11_centos ~]# date -s 14:15:00
Tue Dec 24 14:15:00 CST 2019
[[email protected]_0_11_centos ~]# date
Tue Dec 24 14:15:02 CST 2019
[[email protected]_0_11_centos ~]# 

重启后恢复时间
[[email protected]_0_11_centos ~]# date
Tue Dec 24 14:15:02 CST 2019
[[email protected]_0_11_centos ~]# reboot

连接断开
连接成功
Last login: Tue Dec 24 00:19:53 2019 from 161.117.188.158
[[email protected]_0_11_centos ~]# date
Tue Dec 24 00:30:58 CST 2019
[[email protected]_0_11_centos ~]# 

3、同步系统时间到硬件时间

[[email protected]_0_11_centos ~]# date -s 14:15:00
Tue Dec 24 14:15:00 CST 2019
[[email protected]_0_11_centos ~]# date
Tue Dec 24 14:15:06 CST 2019
[[email protected]_0_11_centos ~]# hwclock
Tue 24 Dec 2019 12:34:15 AM CST  -0.243376 seconds
[[email protected]_0_11_centos ~]# hwclock -w
[[email protected]_0_11_centos ~]# hwclock
Tue 24 Dec 2019 02:15:36 PM CST  -0.568093 seconds

4、ntp同步系统时间

[[email protected]_0_11_centos sysconfig]# ntpdate 210.72.145.44
24 Dec 00:44:52 ntpdate[4796]: the NTP socket is in use, exiting
[[email protected]_0_11_centos sysconfig]# hwclock -w
[[email protected]_0_11_centos sysconfig]# hwclock
Tue 24 Dec 2019 12:45:07 AM CST  -0.621669 seconds
[[email protected]_0_11_centos sysconfig]# 

5、修改时区

1)tzselect命令

2)cp /usr/share/zoneinfo/$主时区/$次时区 /etc/localtime

[[email protected]_0_11_centos America]# cp Yellowknife /etc/localtime 
cp: overwrite ‘/etc/localtime’? y
[[email protected]_0_11_centos America]# date -R
Mon, 23 Dec 2019 09:56:25 -0700
[[email protected]_0_11_centos America]# 

 

相关标签: Linux专栏