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)どうやらその数字はmakefileが実行された回数を表しているようです(ありがとう@ シャラト・マンチャラ)。


バージョン スタイルは次のとおりです。これは、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

関連情報