linux時間手動同步/修改時區
阿新 • • 發佈:2018-12-04
● 顯示系統時間
[[email protected] ~]# date
Wed Oct 31 23:40:14 CST 2018
● 檢視硬體時間
[[email protected] ~]# hwclock
Wed 31 Oct 2018 11:41:43 PM CST -0.391388 seconds
● 同步網路時間
[[email protected] ~]# ntpdate time.nuri.net 31 Oct 23:38:03 ntpdate[71156]: adjust time server 211.115.194.21 offset -0.322808 sec
● 同步時間成功後調整硬體時間(將系統時間寫入到系統硬體當中)
[[email protected] ~]# hwclock -w
● 對映時區檔案/etc/localtime
[[email protected] ~]# ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
● 修改/etc/sysconfig/clock(沒有的話手動建立一個,格式如下)
[[email protected] ~]# cat /etc/sysconfig/clock
ZONE=Asia/Shanghai
UTC=true
ARC=false
[ [email protected] ~]#
#時區調整為自己所需的時區即可