While the hosts keep good time for the Linodes using ntp, it is important that you set the correct timezone for your Linode. Here's how:
The timezone under Linux is set by a symbolic link from
/etc/localtime to a file in the
/usr/share/zoneinfo directory that corresponds with what timezone you are in.
Code:
# ls /usr/share/zoneinfo/
Africa Cuba GMT0 Japan Poland UCT
America EET GMT-0 Kwajalein Portugal Universal
Antarctica Egypt GMT+0 Libya posix US
Arctic Eire Greenwich MET posixrules UTC
Asia EST Hongkong Mexico PRC WET
Atlantic EST5EDT HST Mideast PST8PDT W-SU
Australia Etc Iceland MST right zone.tab
Brazil Europe Indian MST7MDT ROC Zulu
Canada Factory Iran Navajo ROK
CET GB iso3166.tab NZ Singapore
Chile GB-Eire Israel NZ-CHAT SystemV
CST6CDT GMT Jamaica Pacific Turkey
Code:
# ls /usr/share/zoneinfo/US/
Alaska Arizona Eastern Hawaii Michigan Pacific
Aleutian Central East-Indiana Indiana-Starke Mountain Samoa
For example, I want to set my Linux install to use US/Central timezone, so I would execute the following:
Code:
ln -sf /usr/share/zoneinfo/US/Central /etc/localtime
By default, the distros are set up for US/Eastern (I believe). Setting your correct timezone helps spread out the load when all the cron jobs fire off in the early mornings. Please do this.

Code:
ln -sf /usr/share/zoneinfo/your/zone /etc/localtime
Thanks,
-Chris