- 复制时区文件到配置文件夹
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
- 如果系统时间还不正确
- 有网络连接 : 安装ntp并同步时间
yum -y install ntp
ntpdate ntp1.nl.net
- 使ntp自启动
service ntpd start
chkconfig --level 345 ntpd on
- 没有网络连接: 手动设置
date
-s, --set=STRING set time described by STRING
- 同步系统(SYSTEM)时间到硬件(BIOS)时间
hwclock -w
参考:
网友评论