首页 > 代码库 > 配置时间同步并将系统时间写入硬件时钟

配置时间同步并将系统时间写入硬件时钟

第一步要挂载光驱  mount /dev/cdrom (挂载位置)

安装时间同步时使用yum命令来安装    

 

第二步就是配置yum命令的配置文件, yum配置文件位于 /etc/yun.repos.d 目录 , 屏蔽掉多余的文件留下一个要用的

在里面配置

baseurl=http://192.168.*.*/yum/centos/7.0/updates/x86_64 

如图编辑

技术分享

:wq保存后安装时间同步协议 输入 yum install ntp -y 

安装完成后配置要时间同步的服务器或主机的地址

使用vi命令进入 /etc/ntp.conf 配置  找到

restrict 2.cn.pool.ntp.org nomodify notrap noqueryrestrict 1.asia.pool.ntp.org nomodify notrap noqueryrestrict 2.asia.pool.ntp.org nomodify notrap noquery在前面加上#号屏蔽掉 然后在下面添加上一条命令server 127.0.0.1 

 

:wq保存退出systemctl restart ntpd.service  重启协议sudo hwclock -w 吧时间写入到硬件(扩展 :修改centos7的系统时间是date设置系统时钟。  # date -s "2012-05-18 04:53:00"(月/日/年 时:分:秒))

 

配置时间同步并将系统时间写入硬件时钟