Linux 系统时间修改

Linux 系统时间修改

CentOS 7

1
2
3
4
5
6
7
8
# 安装chrony
$ yum install chrony -y
$ systemctl enable chronyd.service
$ systemctl daemon-reload
$ systemctl start chronyd.service
$ systemctl status chronyd.service
$ firewall-cmd --add-service=ntp --permanent
$ firewall-cmd --reload
1
2
3
4
5
# 显示当前时间信息
$ timedatectl status

# 设置时区
$ timedatectl set-timezone Asia/Shanghai
1
2
3
4
5
6
7
8
# 设置完时区后,强制同步下系统时钟
$ chronyc -a makestep

# 硬件时钟设置为协调世界时(UTC)
$ timedatectl set-local-rtc 0

# 硬件时钟设置为本地时区
$ timedatectl set-local-rtc 1

Ubuntu

1
tzselect 

4 9 1 1

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

date

设置系统日期

1
date -s "01/31/2010 23:59:53"

当你修改了系统时间,你需要同步硬件时间和系统时间

1
2
hwclock –systohc
hwclock --systohc –utc