首页 > 代码库 > 更改Linux系统时间
更改Linux系统时间
[root@localhost 2017-01-03_23-18-10]# date
Tue Jan 3 23:20:49 PST 2017
[root@localhost 2017-01-03_23-18-10]# crontab -l
no crontab for root
[root@localhost 2017-01-03_23-18-10]# crontab -e
[root@localhost 2017-01-03_23-18-10]# /usr/sbin/ntpdate pool.ntp.org
3 Jan 23:21:59 ntpdate[125320]: adjust time server 202.118.1.130 offset -0.001502 sec
[root@localhost 2017-01-03_23-18-10]# date
Tue Jan 3 23:22:14 PST 2017
[root@localhost 2017-01-03_23-18-10]# \cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
[root@localhost 2017-01-03_23-18-10]# /usr/sbin/ntpdate pool.ntp.org
4 Jan 15:23:09 ntpdate[125367]: adjust time server 202.118.1.130 offset 0.000668 sec
[root@localhost 2017-01-03_23-18-10]# date
Wed Jan 4 15:23:11 CST 2017
当前的系统之前不是国内的上海时区,选择正确的本国时区,然后同步一下。最后定时同步即可。
更改Linux系统时间