無印PCのホストでDebian 64bit testingの派生トリ part7  起動のたびに時刻が9時間遅れるので対応、結果はまだ未確認 OKのようです。

メインPCでは、どうだったのかは覚えていない。

jessie debian 時刻 NTP デーモン でぐぐって

パッケージ: ntp (1:4.2.6.p5+dfsg-3)

https://packages.debian.org/ja/jessie/ntp  で

ntp のダウンロード amd64

https://packages.debian.org/ja/jessie/amd64/ntp/download で

アジア ftp.jp.debian.org/debian で ntp_4.2.6.p5+dfsg-3_amd64.deb を落としてインストール。

とりあえず下記httpを参考にして

$ sudo leafpad /etc/ntp.conf   で下記緑部追記で保存

# /etc/ntp.conf, configuration for ntpd; see ntp.conf(5) for help

driftfile /var/lib/ntp/ntp.drift
statsdir /var/log/ntpstats/

statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable

# Enable this if you want statistics to be logged.
#statsdir /var/log/ntpstats/

statistics loopstats peerstats clockstats
filegen loopstats file loopstats type day enable
filegen peerstats file peerstats type day enable
filegen clockstats file clockstats type day enable


# You do need to talk to an NTP server or two (or three).
#server ntp.your-provider.example
#server ntp.ubuntu.com
server ntp.nict.jp
server ntp.nict.jp
server ntp.nict.jp

 

NTP の再起動と動作確認
NTP を再起動して設定の変更を有効にします。
$ sudo /etc/init.d/ntp restart

ntpq コマンドに -p オプションをつけて実行すると NTP サーバーの同期状態が表示されます。
$ sudo ntpq -p

ソースがサーバーなのであまりいじりたくない。起動時Conky表示で265MB<ー今ここ

ソース 自宅サーバDebian/Ubuntu

http://debianj.com/ubuntu/install/ntp 

 

デスクトップで適切な物がないのか探してみようと思います。

NTP サーバからのシステム時刻設定用クライアント

https://packages.debian.org/ja/jessie/ntpdate   より

"ntp" パッケージの完全な NTP デーモンがインストールしてあれば、 ntpdate は必要ありません。   との事ですが、

Debian GNU/Linux 7.0(wheezy) の設定

http://cps.scitec.kobe-u.ac.jp/exp/fy2013/130808/practice_linuxConfig/より

時刻の設定      注、下記はまだ未作業です
コンピュータ内の時刻を定常的に正しくしておくための設定を行います.
まず, 以下のコマンドで ntpdate パッケージをインストールします.
# apt-get install ntpdate
次に, 以下のコマンドで時刻を修正します. コマンド入力後しばらくすると NTP (Network Time Protocol) サーバより返答が返り, 時刻が修正されます.
# /usr/sbin/ntpdate-debian
下記のように date コマンドで時刻が正しくなっていることを確認してください.
# date
2011年 6月 17日 金曜日 15:10:04 JST
次に, 上記のような時刻修正コマンドを毎日実行するための設定を 行います.
# leafpad /etc/cron.daily/ntpdate
この ntpdate ファイルには以下のように書き込んでください.
#!/bin/sh
/usr/sbin/ntpdate-debian > /dev/null 2>&1  <ーーこの2行はスクリプト
最後に, このファイルのパーミッションを以下のように設定してください.
# chmod 755 /etc/cron.daily/ntpdate

上記はまだ未作業です。ソースがサーバーの結果を見てどうするか決めます。

今の所再起動しても時刻は合っています。 2014-09-12 21:36

OKのようなので取り敢えずこのままで行く。2014−09−13 03:04