date命令:
$ date
:顯示系統(tǒng)時(shí)間hwclock命令 (即hardwareclock系統(tǒng)硬件時(shí)間)
$ hwclock
:顯示硬件時(shí)間
$ hwclock -w
:將系統(tǒng)時(shí)間寫入到系統(tǒng)硬件當(dāng)中ntpdate命令
ntpdate 是一個(gè)linux時(shí)間同步服務(wù)軟件
$ yum install -y ntpdate
$ ntpdate 0.asia.pool.ntp.org
:同步網(wǎng)絡(luò)時(shí)間
3 Jun 15:42:39 ntpdate[4721]: adjust time server 211.115.194.21 offset -0.005885 sec
出現(xiàn)上述結(jié)果代表時(shí)間同步成功动猬,上面的大致意思為調(diào)整時(shí)間為服務(wù)器211.115.194.21的時(shí)間暮现,相差-0.005885秒的時(shí)間
如果上面time.nist.gov服務(wù)器同步不了包各,可以換下面幾個(gè)時(shí)間服務(wù)器試試:
time.nist.gov
time.nuri.net
0.asia.pool.ntp.org
1.asia.pool.ntp.org
2.asia.pool.ntp.org
3.asia.pool.ntp.org
同步時(shí)間成功后調(diào)整硬件時(shí)間:$ hwclock -w
執(zhí)行成功后, 查看系統(tǒng)硬件時(shí)間,現(xiàn)在date和hwclock現(xiàn)實(shí)的時(shí)間均為internet時(shí)間
$ date
$ hwclock
執(zhí)行兩個(gè)命令前域,顯示的時(shí)間應(yīng)該一樣的
- 定時(shí)執(zhí)行時(shí)間同步
crontab 命令
$ vi /etc/crontab
30 4 * * * root ntpdate 0.asia.pool.ntp.org && hwclock -w
每天 4:30:00 執(zhí)行一次時(shí)間同步