一、手动设置时钟
1.查看系统时间
root@ubuntu:~# date
Fri Dec 24 17:32:59 CST 2021
2.查看硬件时间
root@ubuntu:~# hwclock --show
Fri 24 Dec 2021 05:33:36 PM CST .945359 seconds
3.更新系统年月日
root@ubuntu:~# timedatectl set-time 2021-12-24
Failed to set time: Automatic time synchronization is enabled
#禁用网络自动同步时钟
root@ubuntu:~# timedatectl set-ntp false
root@ubuntu:~# timedatectl set-time 2021-12-24
4.更新系统时分秒
[root@localhost ~]# timedatectl set-time 17:42:59
5.更新时区(亚洲-中国-上海)
[root@localhost ~]# timedatectl set-timezone Asia/Shanghai
6.将硬件时钟调整为与系统时钟一致
[root@localhost ~]# timedatectl set-local-rtc 1
或者
[root@localhost ~]# hwclock --systohc --localtime
7.将日期写入CMOS
[root@localhost ~]# clock -w
8.再次查看系统时间和硬件时间
二、同步网络时钟
1.安装插件
yum -y install ntp
2.更新与某一服务器时钟一致
ntpdate domain或ip
三、Ubuntu设置CST时钟
sudo cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
或
timedatectl set-timezone Asia/Shanghai