February 17, 2009
syncing the time on linux debian
Nikolai Kordulla
0 comments >>
To sync the time on a linux system, with every reboot. Just install ntpdate
>apt-get install ntpdate >crontab -eadd the following line to the crontab
@reboot ntpdate ntp.ubuntu.comif you want to sync once a day just add the following line to the crontab via >crontab -e
36 4 * * * ntpdate ntp.ubuntu.comso every da at 4:36 am the time will be synced.