linux命令之hwclock
1.hwclock介绍
linux命令hwclock是用来显示硬件时钟
2.hwclock用法
hwclock [参数]
hwclock参数
参数 说明
-s 让系统时间同步硬件时间
-w 让硬件时间同步系统时间
3.实例
3.1.同步服务器时钟时间
命令:
ntpdate pool.ntp.org
[root@rhel77 ~]# yum install ntpdate
Loaded plugins: langpacks, product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
Package ntpdate-4.2.6p5-29.el7.x86_64 already installed and latest version
Nothing to do
[root@rhel77 ~]# ntpdate pool.ntp.org
21 Nov 08:56:14 ntpdate[3361]: adjust time server 202.118.1.130 offset -0.019736 sec
[root@rhel77 ~]#
3.2.显示硬件时钟的时间
命令:
hwclock
[root@rhel77 ~]# hwclock
Tue 21 Nov 2023 08:56:34 AM CST -0.615450 seconds
[root@rhel77 ~]#
3.3.让系统时间同步硬件时间
命令:
hwclock -s
[root@rhel77 ~]# hwclock -s
[root@rhel77 ~]#
3.4.让硬件时间同步系统时间
命令:
hwclock -w
[root@rhel77 ~]# hwclock -w
————————————————
版权声明:本文为CSDN博主「小黑要上天」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/z19861216/article/details/134523202