美文网首页
CentOS-时间同步

CentOS-时间同步

作者: 逍遥_yjz | 来源:发表于2022-08-06 10:45 被阅读0次

Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC)。

系统时间:指当前Linux Kernel中的时间。

硬件时间:主板上有电池供电的时间。

查看系统时间的命令:

#date

设置系统时间的命令:

#date –set(月/日/年 时:分:秒)

例:

#date –set "10/11/10 10:15"

查看硬件时间的命令:

hwclock

设置硬件时间的命令:

hwclock –set –date = (月/日/年 时:分:秒)

上述提到的是手动设置时间到一个时间点,可能与当前网络的时间有误差。下面介绍一下与时间服务器上的时间同步的方法

1.安装ntpdate工具

yum -y install ntp ntpdate

2.设置系统时间与网络时间同步

ntpdate cn.pool.ntp.org

3.将系统时间写入硬件时间

hwclock --systohc

4.强制系统时间写入CMOS中防止重启失效

hwclock -w
或
clock -w
-----------------------------------

相关文章

  • CentOS-时间同步

    Linux的时间分为System Clock(系统时间)和Real Time Clock (硬件时间,简称RTC)...

  • 更换阿里源

    # file: CentOS-AppStream.repo [AppStream] name=CentOS-$re...

  • 同步时间

  • 时间同步

    Windows2012R2里没有了internet时间,需要使用另外的方式去做时间同步 下面分两个情况 两个情况,...

  • 时间同步

    临时修改系统时间(reboot后系统时间恢复): date查看系统时间 date -s "设置的系统时间" 永...

  • # centos-内核升级

    查看centos系统版本 cat /etc/redhat-release 查看centos系统内核版本 uname...

  • linux时间同步

    时间同步法二: 网址 反应时间 服务器地址

  • linux时间同步

    安装ntp 同步时间 写入硬件

  • chrony时间同步

    chrony时间同步 时间同步 linux在运行时间长了之后,尤其在虚拟环境中。系统时间可能会存在一定的误差,时间...

  • 集群时间同步

    相当重要的 ,必须要做的服务器运行久了时间会差异,所以需要时间同步第一步: 修改相关配置文件 一、先开启ntpd...

网友评论

      本文标题:CentOS-时间同步

      本文链接:https://www.haomeiwen.com/subject/paupwrtx.html