вывод ntpd --version

вывод ntpd --version

В моем Ubuntu 12.04

#ntpd --version
ntpd [email protected] Wed Mar  2 06:23:51 UTC 2016 (5)

в приведенном выше "(5)" что представляет?

решение1

Дата после номера версии обозначает время компиляции версии.

Я предполагаю, что это (5)как-то связано со значением всемирного координированного времени (UTC). Может быть, разница во времени с UTC, в данном случае +5 часов? Пока я не смог найти документ для этого.

Похоже, что число (5)обозначает количество запусков make-файла (спасибо@ Шарат Манчала).


Стиль версии следующий, просто для подтверждения моей догадки о дате UTC.

NTP uses A.B.C - style release numbers.

At the moment:

 A is 4, for ntp V4.
 B is the major release number.
 C is the minor release number.  Even numbers are 'stable' releases and
 odd numbers are "development" releases.

Following the release number may be the letter 'p' followed by a number.
This indicates a point (or patch) release.

Release candidates have -RC in the release number.

Here are some recent versions numbers as an example:

 4.2.2      A production release (from the ntp-stable repository)
 4.2.2p2    A production release (from the ntp-stable repository)
 4.2.3p12   A development release
 4.2.3p15-rc1   A release candidate for 4.2.4

Связанный контент