目录
一、ntpdate命令的安装使用
1、非嵌入式系统安装ntpdate
2、嵌入式开发板如何使用ntpdade命令
2.1 到网站下载源码
2.2执行命令
2.3拷贝命令
3、ntpdate简单用法:
二、linux 获取当前时间data命令
1、常用命令
2、data命令其他
2.1 基础用法
2.1 其他主要用法
2.4 Linux查看更高精度的时间
NTP是用于同步网络中计算机时间的协议,全称为网络时间协议(Network Time Protocol)
yum install ntpdate -y
apt-get install ntpdate
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可执行文件拷贝到板子的上,做为客户端,只要这个,其他的都非必须
板子上运行,现在就可以在开发板使用这个命令了,通过./ntpdate 202.112.29.82就可以同步时间
PS:
NTP时间同步使用的是世界时间UTC+0,而中国所在的时区是UTC+8
由于嵌入式阉割了时区配置,导致同步的时间与实际时间差8个小时 通过修改时区后通过data命令获取到的也是北京时间(修改方法嵌入式Linux平台上安装NTP服务并同步网络时间_放羊娃的博客-CSDN博客)
3.1 同步网络时间示例(可以用域名也可以用地址):
[root@localhost wj]# ntpdate 202.112.29.82
16 Aug 10:13:21 ntpdate[20212]: adjust time server 202.112.29.82 offset 0.006454 sec
嵌入式下
./ntpdate 202.112.29.82
或者将ntpdate拷贝到usr/bin/下执行 ntpdate 202.112.29.82
系统时间同步到硬件,防止系统重启后时间被还原
# hwclock --systohc
或
#hwclock -w
3.2 其他NTP服务地址
国内:
阿里云NTP服务器
cn.pool.ntp.org 中国开源免费NTP服务器
ntp1.aliyun.com 阿里云NTP服务器
ntp2.aliyun.com 阿里云NTP服务器
time1.aliyun.com 阿里云NTP服务器
time2.aliyun.com 阿里云NTP服务器
国外:
time1.apple.com 苹果NTP服务器
time2.apple.com 苹果NTP服务器
time3.apple.com 苹果NTP服务器
time4.apple.com 苹果NTP服务器
time5.apple.com 苹果NTP服务器
time1.google.com 谷歌NTP服务器
time2.google.com 谷歌NTP服务器
time3.google.com 谷歌NTP服务器
time4.google.com 谷歌NTP服务器
pool.ntp.org 开源免费NTP服务器
获取当前时间
date +%Y-%m-%d" "%H:%M:%S
获取指定时区的当前时间,例如指定东八区(北京时间):
TZ=UTC-8 date +%Y-%m-%d" "%H:%M:%S
date ——按指定格式显示时间,或者设置系统时间。
在命令行下输入date,显示当前系统时间。
-d 用来用来规定时间的显示格式
-s 用来设置时间
格式化输出,可通过date --h查看如下:
%% a literal %
%a locale's abbreviated weekday name (e.g., Sun)
%A locale's full weekday name (e.g., Sunday)
%b locale's abbreviated month name (e.g., Jan)
%B locale's full month name (e.g., January)
%c locale's date and time (e.g., Thu Mar 3 23:05:25 2005)
%C century; like %Y, except omit last two digits (e.g., 20)
%d day of month (e.g., 01)
%D date; same as %m/%d/%y
%e day of month, space padded; same as %_d
%F full date; same as %Y-%m-%d
%g last two digits of year of ISO week number (see %G)
%G year of ISO week number (see %V); normally useful only with %V
%h same as %b
%H hour (00..23)
%I hour (01..12)
%j day of year (001..366)
%k hour, space padded ( 0..23); same as %_H
%l hour, space padded ( 1..12); same as %_I
%m month (01..12)
%M minute (00..59)
%n a newline
%N nanoseconds (000000000..999999999)
%p locale's equivalent of either AM or PM; blank if not known
%P like %p, but lower case
%r locale's 12-hour clock time (e.g., 11:11:04 PM)
%R 24-hour hour and minute; same as %H:%M
%s seconds since 1970-01-01 00:00:00 UTC
%S second (00..60)
%t a tab
%T time; same as %H:%M:%S
%u day of week (1..7); 1 is Monday
%U week number of year, with Sunday as first day of week (00..53)
%V ISO week number, with Monday as first day of week (01..53)
%w day of week (0..6); 0 is Sunday
%W week number of year, with Monday as first day of week (00..53)
%x locale's date representation (e.g., 12/31/99)
%X locale's time representation (e.g., 23:13:48)
%y last two digits of year (00..99)
%Y year
%z +hhmm numeric time zone (e.g., -0400)
%:z +hh:mm numeric time zone (e.g., -04:00)
%::z +hh:mm:ss numeric time zone (e.g., -04:00:00)
%:::z numeric time zone with : to necessary precision (e.g., -04, +05:30)
%Z alphabetic time zone abbreviation (e.g., EDT)
显示当前时间
root@cui:~$ date +"%Y-%m-%d %T"
2019-06-13 09:21:53
显示后一天日期
root@cui:~$ date -d "+1 day" +"%Y%m%d"
20180704
显示前一天日期
root@cui:~$ date -d "-1 day" +"%Y%m%d"
20180702
命令如下:
以纳秒返回当前时间。
root@cui:~$ date +"%T.%N"
09:54:52.869019528
返回当前时间,纳秒四舍五入到前3位数,即毫秒。
root@cui::~$ date +"%T.%3N"
09:56:15.955
返回当前时间,纳秒四舍五入到前6位,即微秒
root@cui::~$ date +"%T.%6N"
10:06:16.348636