嵌入式Linux平台上安装NTP服务并同步网络时间

NTP 时间同步客户端
到网站下载源码

http://www.ntp.org/downloads.html

$ tar -xvf ntp-4.2.6p5.tar.gz
$ cd ntp-4.2.6p5/
$ ./configure --host=arm-linux
$ make
把ntpdate/ntpdate可执行文件拷贝到板子的/usr/bin/下面,做为客户端,只要这个,其他的都非必须
板子上运行
# ntpdate 192.168.0.88
这样运行就会进行时间同步
PS:
NTP时间同步使用的是世界时间UTC+0,而中国所在的时区是UTC+8
由于嵌入式阉割了时区配置,导致同步的时间与实际时间差8个小时

嵌入式Linux中时区的修改

1、使用NTP对时,ntpdate + IP 成功后,通过 date 指令查看系统时间,比服务器时间晚了8小时。

系统时间 2018-3-1 08:18:52,服务器时间实际是 16点。

2、什么原因会造成时间差8小时呢?

考虑到是时区的问题,查询系统当前的时区设置 date -R,看到系统是 +0000 时区,而中国统一采用北京所在的东8时区,由此造成了8小时的时间偏差。

3、如何设置Linux系统的时区?

网上看到 cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime,但是这只是针对电脑系统,嵌入式系统中根本找不到 /usr/share/zoneinfo/Asia/Shanghai。

最后查询资料看到有个 TZ 的环境变量用来设置时区, 在/etc/profile添加这个变量,保存重启。

  1. TZ=UTC-08:00 #设置为东8区

  2. export TZ

  3. hwclock -s

  4. root@freescale ~$ date -R

  5. Thu, 01 Mar 2018 16:18:08 +0800 # 时区变为 +0800

  6. root@freescale ~$ ntpdate 172.16.30.2

  7. 1 Mar 16:18:27 ntpdate[952]: step time server 172.16.30.2 offset 0.601111 sec

  8. root@freescale ~$ date

  9. Thu Mar 1 16:18:30 UTC 2018 #ntp对时后的时间与ntp服务器时间一致

可见,时区修改成功,对时正常。

4、修改时区后有另外一个需要注意的地方:程序中通过 timer(NULL)获取的系统秒数会比正常时间 少 8*3600秒,编写查询时间函数时要注意添加

  1. //get UTC

  2. secondsFrom1970 = time(NULL);

  3. //add 8 hour

  4. secondsFrom1970 += 8*3600; //增加8小时

  5.  
  6.  
  7. //convert to Beijing time

  8. time_utc = localtime(&secondsFrom1970);

步骤:

1、修改DNS,以使ntpdate命令可以通过域名来访问外网ntp服务器,从而同步时间。

vim /etc/resolv.conf     
# 经典配置
nameserver 114.114.114.114
nameserver 8.8.8.8

2、执行ntpdate命令。

ntpdate cn.pool.ntp.org

 

阿里云NTP服务器

阿里云提供了7个NTP时间服务器也就是Internet时间同步服务器地址

经典网络内网 专有网络VPC内网 公网
- ntp.cloud.aliyuncs.com ntp.aliyun.com
ntp1.cloud.aliyuncs.com ntp7.cloud.aliyuncs.com ntp1.aliyun.com
ntp2.cloud.aliyuncs.com ntp8.cloud.aliyuncs.com ntp2.aliyun.com
ntp3.cloud.aliyuncs.com ntp9.cloud.aliyuncs.com ntp3.aliyun.com
ntp4.cloud.aliyuncs.com ntp10.cloud.aliyuncs.com ntp4.aliyun.com
ntp5.cloud.aliyuncs.com ntp11.cloud.aliyuncs.com ntp5.aliyun.com
ntp6.cloud.aliyuncs.com ntp12.cloud.aliyuncs.com ntp6.aliyun.com
- - ntp7.aliyun.com

210.72.145.44 (国家授时中心服务器IP地址)

 

过程中遇到的问题:

1、系统要解析域名,就必须配置DNS,上文中配置dns是在文件 /etc/resolv.conf中,但是这个文件在系统每次重启后就会被清空。因此找到了一个系统启动时要调用的文件 /etc/profile,将相关信息都写在这个文件中:

                                                                           
# she zhi ben di shi jian de shi qu,zhong guo wei dong 8 qu                
TZ=UTC-08:00                                                               
export TZ                                                                  
hwclock -s                                                                 
                                                                           
# jiang dns xie ru dao resolv.conf wen jian,yin wei zhe ge wen jian zai chong qi hou hui bei q
echo "nameserver 114.114.114.114" >> /etc/resolv.conf                                         
echo "nameserver 8.8.8.8" >> /etc/resolv.conf                                                 
                                                     
# ntp geng xin wang luo shi jian,shi yong a li ntp fu wu qi
ntpdate ntp.aliyun.com                                     
                      

关于文件 /etc/profile什么时候被执行的描述:

关于登录linux时,/etc/profile、~/.bash_profile等几个文件的执行过程。

在登录Linux时要执行文件的过程如下:

在刚登录Linux时,首先启动 /etc/profile 文件,然后再启动用户目录下的 ~/.bash_profile、
~/.bash_login或 /.profile文件中的其中一个,执行的顺序为:/.bash_profile、 ~/.bash_login、
~/.profile。如果 ~/.bash_profile文件存在的话,一般还会执行 ~/.bashrc文件。因为在
~/.bash_profile文件中一般会有下面的代码:
if [ -f ~/.bashrc ] ; then
. ./bashrc
fi
~/.bashrc中,一般还会有以下代码:
if [ -f /etc/bashrc ] ; then
. /bashrc
fi
所以,~/.bashrc会调用 /etc/bashrc文件。最后,在退出shell时,还会执行 ~/.bash_logout文件。
执行顺序为:

/etc/profile -> (~/.bash_profile | ~/.bash_login | ~/.profile) -> ~/.bashrc -> /etc/bashrc -> ~/.bash_logout
关于各个文件的作用域,在网上找到了以下说明:
(1)/etc/profile: 此文件为系统的每个用户设置环境信息,当用户第一次登录时,该文件被执行. 并从/etc/profile.d目录的配置文件中搜集shell的设置。
(2)/etc/bashrc: 为每一个运行bash shell的用户执行此文件.当bash shell被打开时,该文件被读取。
(3)~/.bash_profile: 每个用户都可使用该文件输入专用于自己使用的shell信息,当用户登录时,该文件仅仅执行一次!默认情况下,他设置一些环境变量,执行用户的.bashrc文件。
(4)~/.bashrc: 该文件包含专用于你的bash shell的bash信息,当登录时以及每次打开新的shell时,该该文件被读取。
(5)~/.bash_logout:
当每次退出系统(退出bash shell)时,执行该文件.
另外,/etc/profile中设定的变量(全局)的可以作用于任何用户,而~/.bashrc等中设定的变量(局部)只能继承/etc
/profile中的变量,他们是"父子"关系。
(6)~/.bash_profile 是交互式login 方式进入 bash 运行的~/.bashrc ,~/.bashrc是交互式 non-login 方式进入 bash 运行的通常二者设置大致相同,所以通常前者会调用后者。

2、如何设置盘古开发板的ip地址为静态地址:

http://wiki.i2som.com/pages/viewpage.action?pageId=19923012

PanGu开发板使用Systemd作为系统服务的管理工具,默认网卡是DHCP模式,自动从网关出获取IP,网关信息。如果需要手动配置网络信息,可以在/etc/systemd/network下编写配置文件。

/etc/systemd/network/10-eth0.network的文件内容如下:(如果没有这个文件,可以新建一个)

[Match]

Name=eth0

[Network]

DHCP=none

Address=192.168.5.242/24

Gateway=192.168.5.50

DNS=8.8.8.8

配置文件写好后,使用systemctl命令重启服务即可。

systemctl restart systemd-networkd

建议执行reboot命令来重启,而不是按Reset复位按键。

你可能感兴趣的:(Linux)