方法一:手动设置
1、设置时间为2018年7月9日10点50分30秒
# date -s "20180709 10:50:30"
2、同步时CMOS
# hwclock -w
3、读取CMOS时间
# hwclock -r
方法二:与网络时间同步
1、NTP服务器
NTP服务器(上海):ntp.api.bz
2、同步网络时间
# ntpdate ntp.api.bz
3、开机的时候自动网络校时:
# vi /etc/rc.d/rc.local
添加以下内容
/usr/sbin/ntpdate -u NTP服务器地址; /sbin/hwclock -w
4、设定crontab计划任务自动校时
crontab格式如下
# For details see man 4 crontabs
# Example of job definition:
# .---------------- minute (0 - 59)
# | .------------- hour (0 - 23)
# | | .---------- day of month (1 - 31)
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
# | | | | |
# * * * * * command to be executed
# crontab -e
添加以下内容,每天5:10自动进行网络校时,并同时更新BIOS的时间
10 5 * * * root /usr/sbin/ntpdate -u 210.72.145.44;hwclock -w