####修改时区为上海
vim /etc/sysconfig/clock
ZONE="Asia/Shanghai"
####建立软链接
rm /etc/localtime
ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
####设置ntp同步
yum install ntpdate
添加任务crontab -e
20 02 * * * /usr/sbin/ntpdate time.nuri.net
20 22 * * * /usr/sbin/ntpdate ntp1.aliyun.com
写入bios
hwclock -w
评论区