Setting the timezone: Difference between revisions

From Alpine Linux
m (Categorized: System Administration)
(6 intermediate revisions by one other user not shown)
Line 1: Line 1:
==Please note: Only for NON uclibc installs==
 
{{Note|Only for NON uclibc installs!!!}}


glibc based installs use different timezone setup.
glibc based installs use different timezone setup.
Line 5: Line 6:
  apk add tzdata
  apk add tzdata
  ls /usr/share/zoneinfo
  ls /usr/share/zoneinfo
(Suppose you want to use Brussels)
Suppose you want to use Brussels
(First copy the proper zone to localtime)
First copy the proper zone to localtime
  cp /usr/share/zoneinfo/Europe/Brussels /etc/localtime
  cp /usr/share/zoneinfo/Europe/Brussels /etc/localtime
(Now specify your timezone)
Now specify your timezone
  echo "Europe/Brussels" >  /etc/timezone
  echo "Europe/Brussels" >  /etc/timezone
  date
  date
Wed Mar  8 00:46:05 CET 2006
Result: Wed Mar  8 00:46:05 CET 2006
 
You can now remove the other timezones
apk del tzdata
 
 
[[Category:System Administration]]

Revision as of 02:48, 21 September 2017

Note: Only for NON uclibc installs!!!

glibc based installs use different timezone setup.

apk add tzdata
ls /usr/share/zoneinfo

Suppose you want to use Brussels First copy the proper zone to localtime

cp /usr/share/zoneinfo/Europe/Brussels /etc/localtime

Now specify your timezone

echo "Europe/Brussels" >  /etc/timezone
date

Result: Wed Mar 8 00:46:05 CET 2006

You can now remove the other timezones

apk del tzdata