Linode VPS如何修改时区

今天给自己的Linode VPS修改了一下时区,因为是Linode后台自动装的系统,所以时区理所当然的是美国的-5了,每次收到服务器宕机的短信都很蛋疼,因为他显示的是-5区的时间

unbuntu/debian

dpkg-reconfigure tzdata

Arch linux(时区信息参考/user/share/zoneinfo/)

vi /etc/rc.conf

TIMEZONE=”America/New_York”

其他发行版修改时区:

ln -sf /usr/share/zoneinfo/UTC /etc/localtime ## for Universal Coordinated Time

ln -sf /usr/share/zoneinfo/EST /etc/localtime ## for Eastern Standard Time

ln -sf /usr/share/zoneinfo/US/Central /etc/localtime ## for American Central

ln -sf /usr/share/zoneinfo/US/Eastern /etc/localtime ## for American Eastern