在美國租一台機器, 使用 Ubuntu Linux Server, 要將時區、時間設定回台灣, 要怎麼做?
設定時區
- dpkg-reconfigure tzdata # 將時區設回台灣
設定時間
- ntpdate time.stdtime.gov.tw
設定時間錯誤排除
更新時間出現下述錯誤
ntpdate[314]: the NTP socket is in use, exiting
解法
- /etc/init.d/ntp stop # 將 ntp 關掉
- ntpdate time.stdtime.gov.tw # 再執行即可
每天自動 Sync 時間
- 設定 root crontab
- 0 0 * * * /usr/sbin/ntpdate time.stdtime.gov.tw > /dev/null 2>&1