Linux命令之hwclock - 查詢和設定硬體時鐘

java_lover發表於2015-02-26

常用引數

  -r, --show         讀取並列印硬體時鐘(read hardware clock and print result )
  -s, --hctosys      將硬體時鐘同步到系統時鐘(set the system time from the hardware clock )
  -w, --systohc     將系統時鐘同步到硬體時鐘(set the hardware clock to the current system time )

使用示例

示例一 顯示硬體時鐘

[root@new55 ~]# hwclock
2010年11月06日 星期六 21時09分28秒  -0.134840 seconds
[root@new55 ~]# hwclock -r
2010年11月06日 星期六 21時09分33秒  -0.469123 seconds
[root@new55 ~]# hwclock --show
2010年11月06日 星期六 21時09分45秒  -0.127548 seconds
[root@new55 ~]#

示例二 修改日期並同步到硬體時鐘

[root@new55 ~]# date
2010年 11月 06日 星期六 21:11:57 CST
[root@new55 ~]# hwclock -w
[root@new55 ~]# hwclock
2010年11月06日 星期六 21時12分13秒  -0.648818 seconds

相關文章