raspi: time via ntp
the ntpserver is just a waist of memory for a raspi and its enough to synchro the time every couple hours.
follow this:
- right time zone:
 [code]$ sudo dpkg-reconfigure tzdata
 [/code]
- deinstall ntp server:
 [code]$ sudo apt-get purge ntp
 [/code]
- install ntpdate:
 [code]$ sudo apt install ntpdate
 [/code]
- add cron entry:
 [code]$ sudo crontab -e
 @reboot ntpdate -s 0.de.pool.ntp.org
 0 */6 * * * ntpdate -s 0.de.pool.ntp.org
 [/code]
source: from german page aufschnur.de
