Timezone

From Openmoko

(Difference between revisions)
Jump to: navigation, search
m
Line 18: Line 18:
 
  tzdata-pacific
 
  tzdata-pacific
 
  tzdata-posix   
 
  tzdata-posix   
  tzdata-right  
+
  tzdata-right
  
after that you have to change the TZ="UTC" in your /etc/profile
+
after that, you should create a symlink named /etc/localtime which points to the appropriate file in /usr/share/zoneinfo.  For example, if you're on the East Coast of the U.S., the following command will link the correct zoneinfo file to your /etc/localtime, giving you the correct time:
to the timezone you want
+
  
for Germany for example is it TZ="Europe/Berlin"
+
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
 +
 
 +
for Germany for example it is TZ="Europe/Berlin"
 
for France TZ="Europe/Paris"
 
for France TZ="Europe/Paris"
 
and so on
 
and so on
  
after restart of your x-server with  
+
Alternatively, you can take the more invasive approach and change the TZ="UTC" in your /etc/profile
 +
to the timezone you want.
 +
 
 +
Once the timezone is set, restart of your x-server with  
  
 
  /etc/init.d/xserver-nodm restart
 
  /etc/init.d/xserver-nodm restart
  
you have the right timezone
+
you should now have the right timezone.
 
+
A second, less invasive method (unless you <i>like</i> modifying /etc/profile) is to symlink the appropriate timezone config file to /etc/localtime. For example, if you're on the East Coast of the U.S., the following command will link the correct zoneinfo file to your /etc/localtime, giving you the correct time:
+
 
+
ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime
+
  
A x-server restart is still necessary for the window manager to pick up the new timezone.
+
See also [[Date]] for setting the date and time.
  
 
[[Category:Documentation]]
 
[[Category:Documentation]]
 
[[Category:Guides]]
 
[[Category:Guides]]

Revision as of 03:06, 15 July 2008

Timezone

To change the timezone on your Freerunner you have to

opkg install tzdata

and then install one of these

tzdata-africa
tzdata-americas
tzdata-antarctica
tzdata-arctic
tzdata-asia 
tzdata-atlantic
tzdata-australia
tzdata-europe
tzdata-misc
tzdata-pacific
tzdata-posix  
tzdata-right

after that, you should create a symlink named /etc/localtime which points to the appropriate file in /usr/share/zoneinfo. For example, if you're on the East Coast of the U.S., the following command will link the correct zoneinfo file to your /etc/localtime, giving you the correct time:

ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime

for Germany for example it is TZ="Europe/Berlin" for France TZ="Europe/Paris" and so on

Alternatively, you can take the more invasive approach and change the TZ="UTC" in your /etc/profile to the timezone you want.

Once the timezone is set, restart of your x-server with

/etc/init.d/xserver-nodm restart

you should now have the right timezone.

See also Date for setting the date and time.

Personal tools

Timezone

To change the timezone on your Freerunner you have to

opkg install tzdata

and then install one of these

tzdata-africa
tzdata-americas
tzdata-antarctica
tzdata-arctic
tzdata-asia 
tzdata-atlantic
tzdata-australia
tzdata-europe
tzdata-misc
tzdata-pacific
tzdata-posix  
tzdata-right   

after that you have to change the TZ="UTC" in your /etc/profile to the timezone you want

for Germany for example is it TZ="Europe/Berlin" for France TZ="Europe/Paris" and so on

after restart of your x-server with

/etc/init.d/xserver-nodm restart

you have the right timezone

A second, less invasive method (unless you like modifying /etc/profile) is to symlink the appropriate timezone config file to /etc/localtime. For example, if you're on the East Coast of the U.S., the following command will link the correct zoneinfo file to your /etc/localtime, giving you the correct time:

ln -sf /usr/share/zoneinfo/America/New_York /etc/localtime

A x-server restart is still necessary for the window manager to pick up the new timezone.