Wednesday, October 1, 2014

Linux 同步系統時間

在 Linux 中,可以利用 ntpdate -s time.stdtime.gov.tw 同步全球標準時間,也可以利用 Cron 去自動同步


root #crontab -e
----------------------------------------
#每 30 分鐘同步一次
*/30 * * * * (/usr/sbin/ntpdate -s time.stdtime.gov.tw; /usr/sbin/hwclock -w) > /dev/null 2>&1
----------------------------------------
root #