| roberts  
 
  
 
 
 Group: Members
 Posts: 4983
 Joined: Oct. 2003
 | 
|  | Posted: Mar. 02 2008,18:04 |  |  For others who might be reading this thread, all of the supported locations are in /usr/share/zoneinfo. If your particular location is not supported then...
 
 1. Make a working directory
 mkdir tzdata
 2. Change to it
 cd tzdata
 3.  Get the latest zoneinfo data files
 wget ftp://elsie.nci.nih.gov/pub/tzdata2007k.tar.gz
 4.  Unpack it
 tar -zxvf tzdata2007k.tar.gz
 5. Find your major area
 ls -l
 6. Compile for your location, eg, asia
 zic -d zoneinfo asia
 7. Find your specific area
 ls -l zoneinfo
 8  Copy the newly created zoneinfo file, e.g.,
 sudo zoneinfo/Asia/Saigon /usr/share/zoneinfo/Asia/.
 
 or to /etc/localtime
 
 
 HTH
 |