[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[orca-users:01073] Re: 日付確認



古野です。

On 2002.07.08, at 18:35, Hiro Sato wrote:

date、ntpdate、hwclockなどについては、私は
使えますけど。事務員さんにターミナルコマンドを
叩けとは言えませんので。何か方法があっても
よいかな、と思ったのでした。

ntpdateなら以下の設定で毎日時刻合わせができますよ。

1.ntpdateをインストールします。
  # apt-get install ntpdate

2./etc/init.d/ntpdate ファイルを編集します。
  # vi /etc/init.d/ntpdate

  以下の2行の先頭に # を入力し、コメント行とします。
  echo "You must customize /etc/init.d/ntpdate before ntpdate can be run."
  exit 0

  以下の1行にntpサーバを設定します。
  /usr/sbin/ntpdate -b -s # space-delimited IP address list goes here!
   ↓
  /usr/sbin/ntpdate -b -s clock.nc.fukuoka-u.ac.jp
  clock.nc.fukuoka-u.ac.jpは、ntpサーバです。

3.ntpdateにより時刻合わせの手動実行
  # /etc/init.d/ntpdate start
  これで時刻合わせがうまくできれば、次に自動実行の設定です。

<毎日1回の自動実行の設定>
4./etc/cron.daily/ntpdateファイルの作成
  # vi /etc/cron.daily/ntpdate ← 新規作成

  ファイルの内容は以下の2行
  #!/bin/sh
  /etc/init.d/ntpdate start

5./etc/cron.daily/ntpdateファイルに実行権を設定します。
  # chmod 755 /etc/cron.daily/ntpdate

以上で、設定は終了です。
これで、毎日、6時25分頃に時刻合わせが自動で行われます。

参考になれば、幸いです。


---------------------------------------------------------
 古野 智士      Satoshi Furuno
  株式会社ナビック   Navic, Inc.
---------------------------------------------------------
  e-mail   mailto:furunos@xxxxxxxxxxx
  URL      http://www.navic.co.jp/
  Phone    +81-3-5791-7667
  Fax      +81-3-5791-7668
---------------------------------------------------------