knative / operator

Combined operator for Knative.
Apache License 2.0
187 stars 99 forks source link

knative-operator pod panic when apply a knativeServing #717

Closed Baojizhong closed 2 years ago

Baojizhong commented 3 years ago

Describe the bug knative-operator pod panic when apply a knativeServing

Expected behavior no panic

To Reproduce apply operator.yaml apply KnativeServing

Knative release version 0.24.0 k8s 1.19.13

Additional context {"severity":"INFO","timestamp":"2021-08-06T11:30:44.35666209Z","logger":"knative-operator","caller":"knativeserving/knativeserving.go:99","message":"Reconciling KnativeServing","knative.dev/pod":"knative-operator-8695967fcb-prfm8","knative.dev/controller":"knative.dev.operator.pkg.reconciler.knativeserving.Reconciler","knative.dev/kind":"operator.knative.dev.KnativeServing","knative.dev/traceid":"3900070f-b460-4118-b2a8-4ecf91a6058d","knative.dev/key":"knative-service/knative-service","status":{"observedGeneration":1,"conditions":[{"type":"DependenciesInstalled","status":"Unknown","lastTransitionTime":"2021-08-06T11:30:44Z"},{"type":"DeploymentsAvailable","status":"Unknown","lastTransitionTime":"2021-08-06T11:30:44Z"},{"type":"InstallSucceeded","status":"Unknown","lastTransitionTime":"2021-08-06T11:30:44Z"},{"type":"Ready","status":"Unknown","lastTransitionTime":"2021-08-06T11:30:44Z"},{"type":"VersionMigrationEligible","status":"Unknown","lastTransitionTime":"2021-08-06T11:30:44Z"}]}} panic: open /var/run/ko/knative-serving: permission denied

goroutine 607 [running]: knative.dev/operator/pkg/reconciler/common.getLatestRelease(0x20a2cd0, 0xc0012e9180, 0x0, 0x0, 0x0, 0x0) knative.dev/operator/pkg/reconciler/common/releases.go:406 +0xba knative.dev/operator/pkg/reconciler/common.latestRelease(...) knative.dev/operator/pkg/reconciler/common/releases.go:386 knative.dev/operator/pkg/reconciler/common.TargetVersion(0x20a2cd0, 0xc0012e9180, 0xc000b43570, 0x537aa5) knative.dev/operator/pkg/reconciler/common/releases.go:58 +0x2a5 knative.dev/operator/pkg/reconciler/common.IsVersionValidMigrationEligible(0x20a2cd0, 0xc0012e9180, 0x1d7a1b8, 0x1a) knative.dev/operator/pkg/reconciler/common/releases.go:123 +0x50 knative.dev/operator/pkg/reconciler/knativeserving.(Reconciler).ReconcileKind(0xc0007360e0, 0x2079b38, 0xc000923ec0, 0xc0012e9180, 0x0, 0x0) knative.dev/operator/pkg/reconciler/knativeserving/knativeserving.go:101 +0x309 knative.dev/operator/pkg/client/injection/reconciler/operator/v1alpha1/knativeserving.(reconcilerImpl).Reconcile(0xc000cb66e0, 0x2079b38, 0xc000923ec0, 0xc0009e8c60, 0x1f, 0xc000455858, 0x2079b38) knative.dev/operator/pkg/client/injection/reconciler/operator/v1alpha1/knativeserving/reconciler.go:246 +0x1272 knative.dev/pkg/controller.(Impl).processNextWorkItem(0xc000db0180, 0xc0008aa300) knative.dev/pkg@v0.0.0-20210622173328-dd0db4b05c80/controller/controller.go:531 +0x5e4 knative.dev/pkg/controller.(Impl).RunContext.func3(0xc000e6a010, 0xc000db0180) knative.dev/pkg@v0.0.0-20210622173328-dd0db4b05c80/controller/controller.go:468 +0x53 created by knative.dev/pkg/controller.(*Impl).RunContext knative.dev/pkg@v0.0.0-20210622173328-dd0db4b05c80/controller/controller.go:466 +0x1a5

houshengbo commented 3 years ago

@Baojizhong Would you mind sharing the content of your KnativeServing CR? Which platform do you use as the Kubernetes service?

Are you using https://github.com/knative/operator/releases/download/v0.24.0/operator.yaml as your operator.yaml?

Baojizhong commented 3 years ago

@houshengbo 我看你也是个中国人,我就打汉字了。 knative CR :

` apiVersion: v1 kind: Namespace metadata: name: knative-service

apiVersion: operator.knative.dev/v1alpha1 kind: KnativeServing metadata: name: knative-service namespace: knative-service `

使用的是十六台centos物理机搭建的v1.19.13 k8s集群 operator是将这个https://github.com/knative/operator/releases/download/v0.24.0/operator.yaml 中的operator镜像地址替换成了私有化仓库地址,没有做其他改动。

houshengbo commented 3 years ago

Did you rebuild the image or still use the same image as in the release.

This is a public discussion. We better use the language everyone can read and join the discussion.

Baojizhong commented 3 years ago

@houshengbo same image. ` docker pull gcr.io/knative-releases/knative.dev/operator/cmd/operator@sha256:21c3426aa7fb67566193b9d33aadceb167e347bbad876d3bf5e63c8270f6ff20

docker tag gcr.io/knative-releases/knative.dev/operator/cmd/operator@sha256:21c3426aa7fb67566193b9d33aadceb167e347bbad876d3bf5e63c8270f6ff20 inner-hub.com/knative/operator:v0.24.0

docker push inner-hub.com/knative/operator:v0.24.0 ` then use inner-hub.com/knative/operator:v0.24.0

Baojizhong commented 3 years ago

在这个故障集群中,尝试部署了v0.23.0,获得了同样的错误。使用另一个集群部署0.23.0没有遇到错误,怀疑是集群间有什么参数差异导致,有可供参考的可能导致此问题的参数建议吗?

houshengbo commented 3 years ago

In this situation, the question becomes what is the difference between the cluster that is working and the cluster that is not working, in terms of opening the ko path.

What I suggest is to try the image built with the current source code. You can change the source code, checking the permission of the directory of /var/run/ko/knative-serving. Compare the difference between the clusters you use.

You can use os.Chmod(dir_path, mode_num) to change the mode, and you can use os.Stat(dir_path) to check the mode. You can change along the line: https://github.com/knative/operator/blob/95b21edd6b019d48c33c27ed851c222f20c8ab05/pkg/reconciler/common/releases.go#L355.

github-actions[bot] commented 2 years ago

This issue is stale because it has been open for 90 days with no activity. It will automatically close after 30 more days of inactivity. Reopen the issue with /reopen. Mark the issue as fresh by adding the comment /remove-lifecycle stale.

gshaibi commented 2 years ago

I'm having this issue too

knative-prow-robot commented 2 years ago

@gshaibi: You can't reopen an issue/PR unless you authored it or you are a collaborator.

In response to [this](https://github.com/knative/operator/issues/717#issuecomment-1010913945): >/reopen Instructions for interacting with me using PR comments are available [here](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes/test-infra](https://github.com/kubernetes/test-infra/issues/new?title=Prow%20issue:) repository.
xunfeng1980 commented 2 years ago

I'm having this issue too

knative-prow[bot] commented 2 years ago

@xunfeng1980: You can't reopen an issue/PR unless you authored it or you are a collaborator.

In response to [this](https://github.com/knative/operator/issues/717#issuecomment-1135784660): >/reopen Instructions for interacting with me using PR comments are available [here](https://git.k8s.io/community/contributors/guide/pull-requests.md). If you have questions or suggestions related to my behavior, please file an issue against the [kubernetes/test-infra](https://github.com/kubernetes/test-infra/issues/new?title=Prow%20issue:) repository.
sysedwinistrator commented 2 years ago

I'm experiencing the issue, too. However only on my RKE arm64 homelab cluster, on an amd64 GKE cluster the operator works fine. With the help of undocker and dive I took a look at the image to see whether there are any differences between the amd64 and arm64 one. As it should be, the only difference is the ko-app/operator binary. But I noticed that in both images some of the directories under /var/run/ko were missing permissions in dive or didn't have a separate listing when showing the tar contents via undocker: knative-operator

undocker | tar output: ```bash $ undocker koarm64.tar - | tar tvv drwxr-xr-x 0/0 0 1970-01-01 01:00 ./ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/ -rw-r--r-- 0/0 149 1970-01-01 01:00 ./etc/passwd drwx------ 0/0 0 1970-01-01 01:00 ./root/ drwxr-xr-x 65532/65532 0 1970-01-01 01:00 ./home/ drwx------ 65532/65532 0 1970-01-01 01:00 ./home/nonroot/ -rw-r--r-- 0/0 64 1970-01-01 01:00 ./etc/group drwxrwxrwx 0/0 0 1970-01-01 01:00 ./tmp/ -rw-r--r-- 0/0 497 1970-01-01 01:00 ./etc/nsswitch.conf drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/lib/ -rw-r--r-- 0/0 346 1970-01-01 01:00 ./usr/lib/os-release drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/ssl/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/ssl/certs/ -rw-r--r-- 0/0 200313 1970-01-01 01:00 ./etc/ssl/certs/ca-certificates.crt drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/doc/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/doc/ca-certificates/ -rw-r--r-- 0/0 18940 1970-01-01 01:00 ./usr/share/doc/ca-certificates/copyright drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/lib/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/lib/dpkg/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/lib/dpkg/status.d/ -rw-r--r-- 0/0 719 1970-01-01 01:00 ./var/lib/dpkg/status.d/base drwxr-xr-x 0/0 0 1970-01-01 01:00 ./bin/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./boot/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./dev/ -rw-r--r-- 0/0 5 1970-01-01 01:00 ./etc/debian_version drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/default/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/dpkg/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/dpkg/origins/ -rw-r--r-- 0/0 83 1970-01-01 01:00 ./etc/dpkg/origins/debian -rw-r--r-- 0/0 9 1970-01-01 01:00 ./etc/host.conf -rw-r--r-- 0/0 27 1970-01-01 01:00 ./etc/issue -rw-r--r-- 0/0 20 1970-01-01 01:00 ./etc/issue.net drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/profile.d/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/skel/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./etc/update-motd.d/ -rwxr-xr-x 0/0 23 1970-01-01 01:00 ./etc/update-motd.d/10-uname drwxr-xr-x 0/0 0 1970-01-01 01:00 ./lib/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./proc/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./run/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./sbin/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./sys/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/bin/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/games/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/include/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/sbin/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/base-files/ -rw-r--r-- 0/0 571 1970-01-01 01:00 ./usr/share/base-files/dot.bashrc -rw-r--r-- 0/0 161 1970-01-01 01:00 ./usr/share/base-files/dot.profile -rw-r--r-- 0/0 72 1970-01-01 01:00 ./usr/share/base-files/dot.profile.md5sums -rw-r--r-- 0/0 781 1970-01-01 01:00 ./usr/share/base-files/info.dir -rw-r--r-- 0/0 286 1970-01-01 01:00 ./usr/share/base-files/motd -rw-r--r-- 0/0 769 1970-01-01 01:00 ./usr/share/base-files/profile -rw-r--r-- 0/0 651 1970-01-01 01:00 ./usr/share/base-files/profile.md5sums -rw-r--r-- 0/0 772 1970-01-01 01:00 ./usr/share/base-files/staff-group-for-usr-local drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/common-licenses/ -rw-r--r-- 0/0 11358 1970-01-01 01:00 ./usr/share/common-licenses/Apache-2.0 -rw-r--r-- 0/0 6111 1970-01-01 01:00 ./usr/share/common-licenses/Artistic -rw-r--r-- 0/0 1499 1970-01-01 01:00 ./usr/share/common-licenses/BSD -rw-r--r-- 0/0 7048 1970-01-01 01:00 ./usr/share/common-licenses/CC0-1.0 -rw-r--r-- 0/0 20431 1970-01-01 01:00 ./usr/share/common-licenses/GFDL-1.2 -rw-r--r-- 0/0 22962 1970-01-01 01:00 ./usr/share/common-licenses/GFDL-1.3 -rw-r--r-- 0/0 12632 1970-01-01 01:00 ./usr/share/common-licenses/GPL-1 -rw-r--r-- 0/0 18092 1970-01-01 01:00 ./usr/share/common-licenses/GPL-2 -rw-r--r-- 0/0 35147 1970-01-01 01:00 ./usr/share/common-licenses/GPL-3 -rw-r--r-- 0/0 25383 1970-01-01 01:00 ./usr/share/common-licenses/LGPL-2 -rw-r--r-- 0/0 26530 1970-01-01 01:00 ./usr/share/common-licenses/LGPL-2.1 -rw-r--r-- 0/0 7651 1970-01-01 01:00 ./usr/share/common-licenses/LGPL-3 -rw-r--r-- 0/0 25755 1970-01-01 01:00 ./usr/share/common-licenses/MPL-1.1 -rw-r--r-- 0/0 16726 1970-01-01 01:00 ./usr/share/common-licenses/MPL-2.0 drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/dict/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/doc/base-files/ -rw-r--r-- 0/0 4690 1970-01-01 01:00 ./usr/share/doc/base-files/README -rw-r--r-- 0/0 1153 1970-01-01 01:00 ./usr/share/doc/base-files/README.FHS -rw-r--r-- 0/0 17375 1970-01-01 01:00 ./usr/share/doc/base-files/changelog.gz -rw-r--r-- 0/0 1228 1970-01-01 01:00 ./usr/share/doc/base-files/copyright drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/info/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/lintian/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/lintian/overrides/ -rw-r--r-- 0/0 985 1970-01-01 01:00 ./usr/share/lintian/overrides/base-files drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/man/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/misc/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/src/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/backups/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/cache/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/lib/misc/ drwxrwxr-x 0/50 0 1970-01-01 01:00 ./var/local/ drwxrwxrwx 0/0 0 1970-01-01 01:00 ./var/lock/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/log/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/run/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./var/spool/ drwxrwxrwx 0/0 0 1970-01-01 01:00 ./var/tmp/ lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./etc/os-release -> ../usr/lib/os-release lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/common-licenses/GFDL -> GFDL-1.3 lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/common-licenses/GPL -> GPL-3 lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/common-licenses/LGPL -> LGPL-3 lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/doc/base-files/FAQ -> README -rw-r--r-- 0/0 484 1970-01-01 01:00 ./var/lib/dpkg/status.d/netbase -rw-r--r-- 0/0 1816 1970-01-01 01:00 ./etc/ethertypes -rw-r--r-- 0/0 2932 1970-01-01 01:00 ./etc/protocols -rw-r--r-- 0/0 887 1970-01-01 01:00 ./etc/rpc -rw-r--r-- 0/0 12813 1970-01-01 01:00 ./etc/services drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/doc/netbase/ -rw-r--r-- 0/0 9777 1970-01-01 01:00 ./usr/share/doc/netbase/changelog.gz -rw-r--r-- 0/0 535 1970-01-01 01:00 ./usr/share/doc/netbase/copyright -rw-r--r-- 0/0 642 1970-01-01 01:00 ./var/lib/dpkg/status.d/tzdata -rwxr-xr-x 0/0 106 1970-01-01 01:00 ./usr/sbin/tzconfig drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/doc/tzdata/ -rw-r--r-- 0/0 974 1970-01-01 01:00 ./usr/share/doc/tzdata/README.Debian -rw-r--r-- 0/0 14264 1970-01-01 01:00 ./usr/share/doc/tzdata/changelog.Debian.gz -rw-r--r-- 0/0 62433 1970-01-01 01:00 ./usr/share/doc/tzdata/changelog.gz -rw-r--r-- 0/0 308 1970-01-01 01:00 ./usr/share/doc/tzdata/copyright drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/ -rw-r--r-- 0/0 156 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Abidjan -rw-r--r-- 0/0 1084 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Accra -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Algiers -rw-r--r-- 0/0 194 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Bissau -rw-r--r-- 0/0 1963 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Cairo -rw-r--r-- 0/0 2449 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Casablanca -rw-r--r-- 0/0 2050 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Ceuta -rw-r--r-- 0/0 2319 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/El_Aaiun -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Johannesburg -rw-r--r-- 0/0 699 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Juba -rw-r--r-- 0/0 699 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Khartoum -rw-r--r-- 0/0 251 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Lagos -rw-r--r-- 0/0 157 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Maputo -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Monrovia -rw-r--r-- 0/0 285 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Nairobi -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Ndjamena -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Sao_Tome -rw-r--r-- 0/0 641 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Tripoli -rw-r--r-- 0/0 701 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Tunis -rw-r--r-- 0/0 979 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Windhoek drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/ -rw-r--r-- 0/0 2356 1970-01-01 01:00 ./usr/share/zoneinfo/America/Adak -rw-r--r-- 0/0 2371 1970-01-01 01:00 ./usr/share/zoneinfo/America/Anchorage -rw-r--r-- 0/0 896 1970-01-01 01:00 ./usr/share/zoneinfo/America/Araguaina drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/ -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Buenos_Aires -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Catamarca -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Cordoba -rw-r--r-- 0/0 1072 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Jujuy -rw-r--r-- 0/0 1114 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/La_Rioja -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Mendoza -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Rio_Gallegos -rw-r--r-- 0/0 1072 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Salta -rw-r--r-- 0/0 1114 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/San_Juan -rw-r--r-- 0/0 1130 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/San_Luis -rw-r--r-- 0/0 1128 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Tucuman -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/Ushuaia -rw-r--r-- 0/0 2068 1970-01-01 01:00 ./usr/share/zoneinfo/America/Asuncion -rw-r--r-- 0/0 336 1970-01-01 01:00 ./usr/share/zoneinfo/America/Atikokan -rw-r--r-- 0/0 1036 1970-01-01 01:00 ./usr/share/zoneinfo/America/Bahia -rw-r--r-- 0/0 1574 1970-01-01 01:00 ./usr/share/zoneinfo/America/Bahia_Banderas -rw-r--r-- 0/0 330 1970-01-01 01:00 ./usr/share/zoneinfo/America/Barbados -rw-r--r-- 0/0 588 1970-01-01 01:00 ./usr/share/zoneinfo/America/Belem -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/America/Belize -rw-r--r-- 0/0 298 1970-01-01 01:00 ./usr/share/zoneinfo/America/Blanc-Sablon -rw-r--r-- 0/0 644 1970-01-01 01:00 ./usr/share/zoneinfo/America/Boa_Vista -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/America/Bogota -rw-r--r-- 0/0 2394 1970-01-01 01:00 ./usr/share/zoneinfo/America/Boise -rw-r--r-- 0/0 2084 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cambridge_Bay -rw-r--r-- 0/0 1456 1970-01-01 01:00 ./usr/share/zoneinfo/America/Campo_Grande -rw-r--r-- 0/0 802 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cancun -rw-r--r-- 0/0 280 1970-01-01 01:00 ./usr/share/zoneinfo/America/Caracas -rw-r--r-- 0/0 210 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cayenne -rw-r--r-- 0/0 3576 1970-01-01 01:00 ./usr/share/zoneinfo/America/Chicago -rw-r--r-- 0/0 1508 1970-01-01 01:00 ./usr/share/zoneinfo/America/Chihuahua -rw-r--r-- 0/0 332 1970-01-01 01:00 ./usr/share/zoneinfo/America/Costa_Rica -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/America/Creston -rw-r--r-- 0/0 1428 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cuiaba -rw-r--r-- 0/0 198 1970-01-01 01:00 ./usr/share/zoneinfo/America/Curacao -rw-r--r-- 0/0 698 1970-01-01 01:00 ./usr/share/zoneinfo/America/Danmarkshavn -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/America/Dawson -rw-r--r-- 0/0 1050 1970-01-01 01:00 ./usr/share/zoneinfo/America/Dawson_Creek -rw-r--r-- 0/0 2444 1970-01-01 01:00 ./usr/share/zoneinfo/America/Denver -rw-r--r-- 0/0 2230 1970-01-01 01:00 ./usr/share/zoneinfo/America/Detroit -rw-r--r-- 0/0 2332 1970-01-01 01:00 ./usr/share/zoneinfo/America/Edmonton -rw-r--r-- 0/0 676 1970-01-01 01:00 ./usr/share/zoneinfo/America/Eirunepe -rw-r--r-- 0/0 236 1970-01-01 01:00 ./usr/share/zoneinfo/America/El_Salvador -rw-r--r-- 0/0 2240 1970-01-01 01:00 ./usr/share/zoneinfo/America/Fort_Nelson -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/America/Fortaleza -rw-r--r-- 0/0 2192 1970-01-01 01:00 ./usr/share/zoneinfo/America/Glace_Bay -rw-r--r-- 0/0 3210 1970-01-01 01:00 ./usr/share/zoneinfo/America/Goose_Bay -rw-r--r-- 0/0 1858 1970-01-01 01:00 ./usr/share/zoneinfo/America/Grand_Turk -rw-r--r-- 0/0 292 1970-01-01 01:00 ./usr/share/zoneinfo/America/Guatemala -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/America/Guayaquil -rw-r--r-- 0/0 252 1970-01-01 01:00 ./usr/share/zoneinfo/America/Guyana -rw-r--r-- 0/0 3424 1970-01-01 01:00 ./usr/share/zoneinfo/America/Halifax -rw-r--r-- 0/0 2428 1970-01-01 01:00 ./usr/share/zoneinfo/America/Havana -rw-r--r-- 0/0 440 1970-01-01 01:00 ./usr/share/zoneinfo/America/Hermosillo drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/ -rw-r--r-- 0/0 1666 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Indianapolis -rw-r--r-- 0/0 2428 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Knox -rw-r--r-- 0/0 1722 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Marengo -rw-r--r-- 0/0 1904 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Petersburg -rw-r--r-- 0/0 1684 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Tell_City -rw-r--r-- 0/0 1414 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Vevay -rw-r--r-- 0/0 1694 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Vincennes -rw-r--r-- 0/0 1778 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indiana/Winamac -rw-r--r-- 0/0 1914 1970-01-01 01:00 ./usr/share/zoneinfo/America/Inuvik -rw-r--r-- 0/0 2032 1970-01-01 01:00 ./usr/share/zoneinfo/America/Iqaluit -rw-r--r-- 0/0 498 1970-01-01 01:00 ./usr/share/zoneinfo/America/Jamaica -rw-r--r-- 0/0 2353 1970-01-01 01:00 ./usr/share/zoneinfo/America/Juneau drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Kentucky/ -rw-r--r-- 0/0 2772 1970-01-01 01:00 ./usr/share/zoneinfo/America/Kentucky/Louisville -rw-r--r-- 0/0 2352 1970-01-01 01:00 ./usr/share/zoneinfo/America/Kentucky/Monticello -rw-r--r-- 0/0 248 1970-01-01 01:00 ./usr/share/zoneinfo/America/La_Paz -rw-r--r-- 0/0 422 1970-01-01 01:00 ./usr/share/zoneinfo/America/Lima -rw-r--r-- 0/0 2836 1970-01-01 01:00 ./usr/share/zoneinfo/America/Los_Angeles -rw-r--r-- 0/0 756 1970-01-01 01:00 ./usr/share/zoneinfo/America/Maceio -rw-r--r-- 0/0 454 1970-01-01 01:00 ./usr/share/zoneinfo/America/Managua -rw-r--r-- 0/0 616 1970-01-01 01:00 ./usr/share/zoneinfo/America/Manaus -rw-r--r-- 0/0 248 1970-01-01 01:00 ./usr/share/zoneinfo/America/Martinique -rw-r--r-- 0/0 1402 1970-01-01 01:00 ./usr/share/zoneinfo/America/Matamoros -rw-r--r-- 0/0 1550 1970-01-01 01:00 ./usr/share/zoneinfo/America/Mazatlan -rw-r--r-- 0/0 2274 1970-01-01 01:00 ./usr/share/zoneinfo/America/Menominee -rw-r--r-- 0/0 1442 1970-01-01 01:00 ./usr/share/zoneinfo/America/Merida -rw-r--r-- 0/0 1423 1970-01-01 01:00 ./usr/share/zoneinfo/America/Metlakatla -rw-r--r-- 0/0 1604 1970-01-01 01:00 ./usr/share/zoneinfo/America/Mexico_City -rw-r--r-- 0/0 1682 1970-01-01 01:00 ./usr/share/zoneinfo/America/Miquelon -rw-r--r-- 0/0 3154 1970-01-01 01:00 ./usr/share/zoneinfo/America/Moncton -rw-r--r-- 0/0 1402 1970-01-01 01:00 ./usr/share/zoneinfo/America/Monterrey -rw-r--r-- 0/0 1550 1970-01-01 01:00 ./usr/share/zoneinfo/America/Montevideo -rw-r--r-- 0/0 2388 1970-01-01 01:00 ./usr/share/zoneinfo/America/Nassau -rw-r--r-- 0/0 3536 1970-01-01 01:00 ./usr/share/zoneinfo/America/New_York -rw-r--r-- 0/0 2122 1970-01-01 01:00 ./usr/share/zoneinfo/America/Nipigon -rw-r--r-- 0/0 2367 1970-01-01 01:00 ./usr/share/zoneinfo/America/Nome -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/America/Noronha drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/North_Dakota/ -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/America/North_Dakota/Beulah -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/America/North_Dakota/Center -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/America/North_Dakota/New_Salem -rw-r--r-- 0/0 1878 1970-01-01 01:00 ./usr/share/zoneinfo/America/Nuuk -rw-r--r-- 0/0 1508 1970-01-01 01:00 ./usr/share/zoneinfo/America/Ojinaga -rw-r--r-- 0/0 194 1970-01-01 01:00 ./usr/share/zoneinfo/America/Panama -rw-r--r-- 0/0 2094 1970-01-01 01:00 ./usr/share/zoneinfo/America/Pangnirtung -rw-r--r-- 0/0 282 1970-01-01 01:00 ./usr/share/zoneinfo/America/Paramaribo -rw-r--r-- 0/0 344 1970-01-01 01:00 ./usr/share/zoneinfo/America/Phoenix -rw-r--r-- 0/0 1446 1970-01-01 01:00 ./usr/share/zoneinfo/America/Port-au-Prince -rw-r--r-- 0/0 156 1970-01-01 01:00 ./usr/share/zoneinfo/America/Port_of_Spain -rw-r--r-- 0/0 588 1970-01-01 01:00 ./usr/share/zoneinfo/America/Porto_Velho -rw-r--r-- 0/0 246 1970-01-01 01:00 ./usr/share/zoneinfo/America/Puerto_Rico -rw-r--r-- 0/0 1902 1970-01-01 01:00 ./usr/share/zoneinfo/America/Punta_Arenas -rw-r--r-- 0/0 2122 1970-01-01 01:00 ./usr/share/zoneinfo/America/Rainy_River -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/America/Rankin_Inlet -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/America/Recife -rw-r--r-- 0/0 980 1970-01-01 01:00 ./usr/share/zoneinfo/America/Regina -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/America/Resolute -rw-r--r-- 0/0 648 1970-01-01 01:00 ./usr/share/zoneinfo/America/Rio_Branco -rw-r--r-- 0/0 618 1970-01-01 01:00 ./usr/share/zoneinfo/America/Santarem -rw-r--r-- 0/0 2529 1970-01-01 01:00 ./usr/share/zoneinfo/America/Santiago -rw-r--r-- 0/0 482 1970-01-01 01:00 ./usr/share/zoneinfo/America/Santo_Domingo -rw-r--r-- 0/0 1456 1970-01-01 01:00 ./usr/share/zoneinfo/America/Sao_Paulo -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/America/Scoresbysund -rw-r--r-- 0/0 2329 1970-01-01 01:00 ./usr/share/zoneinfo/America/Sitka -rw-r--r-- 0/0 3655 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Johns -rw-r--r-- 0/0 560 1970-01-01 01:00 ./usr/share/zoneinfo/America/Swift_Current -rw-r--r-- 0/0 264 1970-01-01 01:00 ./usr/share/zoneinfo/America/Tegucigalpa -rw-r--r-- 0/0 1514 1970-01-01 01:00 ./usr/share/zoneinfo/America/Thule -rw-r--r-- 0/0 2202 1970-01-01 01:00 ./usr/share/zoneinfo/America/Thunder_Bay -rw-r--r-- 0/0 2342 1970-01-01 01:00 ./usr/share/zoneinfo/America/Tijuana -rw-r--r-- 0/0 3494 1970-01-01 01:00 ./usr/share/zoneinfo/America/Toronto -rw-r--r-- 0/0 2892 1970-01-01 01:00 ./usr/share/zoneinfo/America/Vancouver -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/America/Whitehorse -rw-r--r-- 0/0 2882 1970-01-01 01:00 ./usr/share/zoneinfo/America/Winnipeg -rw-r--r-- 0/0 2305 1970-01-01 01:00 ./usr/share/zoneinfo/America/Yakutat -rw-r--r-- 0/0 1966 1970-01-01 01:00 ./usr/share/zoneinfo/America/Yellowknife drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/ -rw-r--r-- 0/0 384 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Casey -rw-r--r-- 0/0 297 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Davis -rw-r--r-- 0/0 202 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/DumontDUrville -rw-r--r-- 0/0 2288 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Macquarie -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Mawson -rw-r--r-- 0/0 1418 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Palmer -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Rothera -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Syowa -rw-r--r-- 0/0 1162 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Troll -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/Vostok drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Arctic/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/ -rw-r--r-- 0/0 1017 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Almaty -rw-r--r-- 0/0 1863 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Amman -rw-r--r-- 0/0 1208 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Anadyr -rw-r--r-- 0/0 1003 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Aqtau -rw-r--r-- 0/0 1033 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Aqtobe -rw-r--r-- 0/0 637 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ashgabat -rw-r--r-- 0/0 1011 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Atyrau -rw-r--r-- 0/0 995 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Baghdad -rw-r--r-- 0/0 1255 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Baku -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Bangkok -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Barnaul -rw-r--r-- 0/0 2166 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Beirut -rw-r--r-- 0/0 999 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Bishkek -rw-r--r-- 0/0 215 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Brunei -rw-r--r-- 0/0 1243 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Chita -rw-r--r-- 0/0 977 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Choibalsan -rw-r--r-- 0/0 404 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Colombo -rw-r--r-- 0/0 2306 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Damascus -rw-r--r-- 0/0 361 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Dhaka -rw-r--r-- 0/0 239 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Dili -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Dubai -rw-r--r-- 0/0 607 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Dushanbe -rw-r--r-- 0/0 2028 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Famagusta -rw-r--r-- 0/0 2450 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Gaza -rw-r--r-- 0/0 2478 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Hebron -rw-r--r-- 0/0 375 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ho_Chi_Minh -rw-r--r-- 0/0 1217 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Hong_Kong -rw-r--r-- 0/0 907 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Hovd -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Irkutsk -rw-r--r-- 0/0 383 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Jakarta -rw-r--r-- 0/0 237 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Jayapura -rw-r--r-- 0/0 2388 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Jerusalem -rw-r--r-- 0/0 220 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kabul -rw-r--r-- 0/0 1184 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kamchatka -rw-r--r-- 0/0 403 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Karachi -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kathmandu -rw-r--r-- 0/0 1297 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Khandyga -rw-r--r-- 0/0 303 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kolkata -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Krasnoyarsk -rw-r--r-- 0/0 415 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kuala_Lumpur -rw-r--r-- 0/0 507 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kuching -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Macau -rw-r--r-- 0/0 1244 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Magadan -rw-r--r-- 0/0 274 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Makassar -rw-r--r-- 0/0 350 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Manila -rw-r--r-- 0/0 2002 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Nicosia -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Novokuznetsk -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Novosibirsk -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Omsk -rw-r--r-- 0/0 1025 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Oral -rw-r--r-- 0/0 381 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Pontianak -rw-r--r-- 0/0 253 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Pyongyang -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Qatar -rw-r--r-- 0/0 1033 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Qostanay -rw-r--r-- 0/0 1047 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Qyzylorda -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Riyadh -rw-r--r-- 0/0 1220 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Sakhalin -rw-r--r-- 0/0 605 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Samarkand -rw-r--r-- 0/0 645 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Seoul -rw-r--r-- 0/0 573 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Shanghai -rw-r--r-- 0/0 415 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Singapore -rw-r--r-- 0/0 1230 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Srednekolymsk -rw-r--r-- 0/0 781 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Taipei -rw-r--r-- 0/0 621 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tashkent -rw-r--r-- 0/0 1071 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tbilisi -rw-r--r-- 0/0 1264 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tehran -rw-r--r-- 0/0 215 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Thimphu -rw-r--r-- 0/0 309 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tokyo -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tomsk -rw-r--r-- 0/0 907 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ulaanbaatar -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Urumqi -rw-r--r-- 0/0 1276 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ust-Nera -rw-r--r-- 0/0 1230 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Vladivostok -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Yakutsk -rw-r--r-- 0/0 288 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Yangon -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Yekaterinburg -rw-r--r-- 0/0 1199 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Yerevan drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/ -rw-r--r-- 0/0 3484 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Azores -rw-r--r-- 0/0 2416 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Bermuda -rw-r--r-- 0/0 1897 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Canary -rw-r--r-- 0/0 270 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Cape_Verde -rw-r--r-- 0/0 1815 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Faroe -rw-r--r-- 0/0 3475 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Madeira -rw-r--r-- 0/0 1174 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Reykjavik -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/South_Georgia -rw-r--r-- 0/0 1242 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Stanley drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/ -rw-r--r-- 0/0 2231 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Adelaide -rw-r--r-- 0/0 441 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Brisbane -rw-r--r-- 0/0 2283 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Broken_Hill -rw-r--r-- 0/0 334 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Darwin -rw-r--r-- 0/0 492 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Eucla -rw-r--r-- 0/0 2394 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Hobart -rw-r--r-- 0/0 511 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Lindeman -rw-r--r-- 0/0 1880 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Lord_Howe -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Melbourne -rw-r--r-- 0/0 468 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Perth -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Sydney drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Brazil/ -rw-r--r-- 0/0 2102 1970-01-01 01:00 ./usr/share/zoneinfo/CET -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/CST6CDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Chile/ -rw-r--r-- 0/0 1876 1970-01-01 01:00 ./usr/share/zoneinfo/EET -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/EST -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/EST5EDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/ -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+1 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+10 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+11 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+12 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+2 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+3 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+4 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+5 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+6 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+7 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+8 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+9 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-1 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-10 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-11 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-12 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-13 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-14 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-2 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-3 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-4 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-5 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-6 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-7 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-8 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-9 -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/UTC drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/ -rw-r--r-- 0/0 2940 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Amsterdam -rw-r--r-- 0/0 1742 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Andorra -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Astrakhan -rw-r--r-- 0/0 2262 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Athens -rw-r--r-- 0/0 1948 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Belgrade -rw-r--r-- 0/0 2326 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Berlin -rw-r--r-- 0/0 2961 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Brussels -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Bucharest -rw-r--r-- 0/0 2396 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Budapest -rw-r--r-- 0/0 2436 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Chisinau -rw-r--r-- 0/0 2151 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Copenhagen -rw-r--r-- 0/0 3522 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Dublin -rw-r--r-- 0/0 3052 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Gibraltar -rw-r--r-- 0/0 1900 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Helsinki -rw-r--r-- 0/0 1961 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Istanbul -rw-r--r-- 0/0 1523 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Kaliningrad -rw-r--r-- 0/0 2088 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Kiev -rw-r--r-- 0/0 1153 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Kirov -rw-r--r-- 0/0 3469 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Lisbon -rw-r--r-- 0/0 3678 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/London -rw-r--r-- 0/0 2960 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Luxembourg -rw-r--r-- 0/0 2628 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Madrid -rw-r--r-- 0/0 2620 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Malta -rw-r--r-- 0/0 1361 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Minsk -rw-r--r-- 0/0 2944 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Monaco -rw-r--r-- 0/0 1535 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Moscow -rw-r--r-- 0/0 2242 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Oslo -rw-r--r-- 0/0 2962 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Paris -rw-r--r-- 0/0 2329 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Prague -rw-r--r-- 0/0 2226 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Riga -rw-r--r-- 0/0 2683 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Rome -rw-r--r-- 0/0 1215 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Samara -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Saratov -rw-r--r-- 0/0 1481 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Simferopol -rw-r--r-- 0/0 2121 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Sofia -rw-r--r-- 0/0 1909 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Stockholm -rw-r--r-- 0/0 2178 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Tallinn -rw-r--r-- 0/0 2084 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Tirane -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Ulyanovsk -rw-r--r-- 0/0 2094 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Uzhgorod -rw-r--r-- 0/0 2228 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Vienna -rw-r--r-- 0/0 2190 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Vilnius -rw-r--r-- 0/0 1181 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Volgograd -rw-r--r-- 0/0 2696 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Warsaw -rw-r--r-- 0/0 2106 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Zaporozhye -rw-r--r-- 0/0 1909 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Zurich -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/Factory -rw-r--r-- 0/0 119 1970-01-01 01:00 ./usr/share/zoneinfo/HST drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/ -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Chagos -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Christmas -rw-r--r-- 0/0 182 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Cocos -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Kerguelen -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Mahe -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Maldives -rw-r--r-- 0/0 253 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Mauritius -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Reunion -rw-r--r-- 0/0 2102 1970-01-01 01:00 ./usr/share/zoneinfo/MET -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/MST -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/MST7MDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Mexico/ -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/PST8PDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/ -rw-r--r-- 0/0 640 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Apia -rw-r--r-- 0/0 2451 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Auckland -rw-r--r-- 0/0 286 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Bougainville -rw-r--r-- 0/0 2078 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Chatham -rw-r--r-- 0/0 287 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Chuuk -rw-r--r-- 0/0 2233 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Easter -rw-r--r-- 0/0 538 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Efate -rw-r--r-- 0/0 250 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Enderbury -rw-r--r-- 0/0 212 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Fakaofo -rw-r--r-- 0/0 1061 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Fiji -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Funafuti -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Galapagos -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Gambier -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Guadalcanal -rw-r--r-- 0/0 516 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Guam -rw-r--r-- 0/0 329 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Honolulu -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Kiritimati -rw-r--r-- 0/0 377 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Kosrae -rw-r--r-- 0/0 340 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Kwajalein -rw-r--r-- 0/0 330 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Majuro -rw-r--r-- 0/0 181 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Marquesas -rw-r--r-- 0/0 268 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Nauru -rw-r--r-- 0/0 257 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Niue -rw-r--r-- 0/0 924 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Norfolk -rw-r--r-- 0/0 314 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Noumea -rw-r--r-- 0/0 187 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Pago_Pago -rw-r--r-- 0/0 190 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Palau -rw-r--r-- 0/0 214 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Pitcairn -rw-r--r-- 0/0 325 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Pohnpei -rw-r--r-- 0/0 196 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Port_Moresby -rw-r--r-- 0/0 593 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Rarotonga -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Tahiti -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Tarawa -rw-r--r-- 0/0 384 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Tongatapu -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Wake -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Wallis drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/ -rw-r--r-- 0/0 1873 1970-01-01 01:00 ./usr/share/zoneinfo/WET -rw-r--r-- 0/0 4463 1970-01-01 01:00 ./usr/share/zoneinfo/iso3166.tab -rw-r--r-- 0/0 10666 1970-01-01 01:00 ./usr/share/zoneinfo/leap-seconds.list -rw-r--r-- 0/0 3392 1970-01-01 01:00 ./usr/share/zoneinfo/leapseconds drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/ -rw-r--r-- 0/0 156 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Abidjan -rw-r--r-- 0/0 1084 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Accra -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Algiers -rw-r--r-- 0/0 194 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Bissau -rw-r--r-- 0/0 1963 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Cairo -rw-r--r-- 0/0 2449 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Casablanca -rw-r--r-- 0/0 2050 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Ceuta -rw-r--r-- 0/0 2319 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/El_Aaiun -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Johannesburg -rw-r--r-- 0/0 699 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Juba -rw-r--r-- 0/0 699 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Khartoum -rw-r--r-- 0/0 251 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Lagos -rw-r--r-- 0/0 157 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Maputo -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Monrovia -rw-r--r-- 0/0 285 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Nairobi -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Ndjamena -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Sao_Tome -rw-r--r-- 0/0 641 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Tripoli -rw-r--r-- 0/0 701 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Tunis -rw-r--r-- 0/0 979 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Windhoek drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/ -rw-r--r-- 0/0 2356 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Adak -rw-r--r-- 0/0 2371 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Anchorage -rw-r--r-- 0/0 896 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Araguaina drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/ -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Buenos_Aires -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Catamarca -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Cordoba -rw-r--r-- 0/0 1072 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Jujuy -rw-r--r-- 0/0 1114 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/La_Rioja -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Mendoza -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Rio_Gallegos -rw-r--r-- 0/0 1072 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Salta -rw-r--r-- 0/0 1114 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/San_Juan -rw-r--r-- 0/0 1130 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/San_Luis -rw-r--r-- 0/0 1128 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Tucuman -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/Ushuaia -rw-r--r-- 0/0 2068 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Asuncion -rw-r--r-- 0/0 336 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Atikokan -rw-r--r-- 0/0 1036 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Bahia -rw-r--r-- 0/0 1574 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Bahia_Banderas -rw-r--r-- 0/0 330 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Barbados -rw-r--r-- 0/0 588 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Belem -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Belize -rw-r--r-- 0/0 298 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Blanc-Sablon -rw-r--r-- 0/0 644 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Boa_Vista -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Bogota -rw-r--r-- 0/0 2394 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Boise -rw-r--r-- 0/0 2084 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cambridge_Bay -rw-r--r-- 0/0 1456 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Campo_Grande -rw-r--r-- 0/0 802 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cancun -rw-r--r-- 0/0 280 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Caracas -rw-r--r-- 0/0 210 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cayenne -rw-r--r-- 0/0 3576 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Chicago -rw-r--r-- 0/0 1508 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Chihuahua -rw-r--r-- 0/0 332 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Costa_Rica -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Creston -rw-r--r-- 0/0 1428 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cuiaba -rw-r--r-- 0/0 198 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Curacao -rw-r--r-- 0/0 698 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Danmarkshavn -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Dawson -rw-r--r-- 0/0 1050 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Dawson_Creek -rw-r--r-- 0/0 2444 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Denver -rw-r--r-- 0/0 2230 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Detroit -rw-r--r-- 0/0 2332 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Edmonton -rw-r--r-- 0/0 676 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Eirunepe -rw-r--r-- 0/0 236 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/El_Salvador -rw-r--r-- 0/0 2240 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Fort_Nelson -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Fortaleza -rw-r--r-- 0/0 2192 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Glace_Bay -rw-r--r-- 0/0 3210 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Goose_Bay -rw-r--r-- 0/0 1858 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Grand_Turk -rw-r--r-- 0/0 292 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Guatemala -rw-r--r-- 0/0 262 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Guayaquil -rw-r--r-- 0/0 252 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Guyana -rw-r--r-- 0/0 3424 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Halifax -rw-r--r-- 0/0 2428 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Havana -rw-r--r-- 0/0 440 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Hermosillo drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/ -rw-r--r-- 0/0 1666 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Indianapolis -rw-r--r-- 0/0 2428 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Knox -rw-r--r-- 0/0 1722 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Marengo -rw-r--r-- 0/0 1904 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Petersburg -rw-r--r-- 0/0 1684 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Tell_City -rw-r--r-- 0/0 1414 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Vevay -rw-r--r-- 0/0 1694 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Vincennes -rw-r--r-- 0/0 1778 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indiana/Winamac -rw-r--r-- 0/0 1914 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Inuvik -rw-r--r-- 0/0 2032 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Iqaluit -rw-r--r-- 0/0 498 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Jamaica -rw-r--r-- 0/0 2353 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Juneau drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Kentucky/ -rw-r--r-- 0/0 2772 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Kentucky/Louisville -rw-r--r-- 0/0 2352 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Kentucky/Monticello -rw-r--r-- 0/0 248 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/La_Paz -rw-r--r-- 0/0 422 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Lima -rw-r--r-- 0/0 2836 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Los_Angeles -rw-r--r-- 0/0 756 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Maceio -rw-r--r-- 0/0 454 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Managua -rw-r--r-- 0/0 616 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Manaus -rw-r--r-- 0/0 248 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Martinique -rw-r--r-- 0/0 1402 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Matamoros -rw-r--r-- 0/0 1550 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Mazatlan -rw-r--r-- 0/0 2274 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Menominee -rw-r--r-- 0/0 1442 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Merida -rw-r--r-- 0/0 1423 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Metlakatla -rw-r--r-- 0/0 1604 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Mexico_City -rw-r--r-- 0/0 1682 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Miquelon -rw-r--r-- 0/0 3154 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Moncton -rw-r--r-- 0/0 1402 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Monterrey -rw-r--r-- 0/0 1550 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Montevideo -rw-r--r-- 0/0 2388 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Nassau -rw-r--r-- 0/0 3536 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/New_York -rw-r--r-- 0/0 2122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Nipigon -rw-r--r-- 0/0 2367 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Nome -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Noronha drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/North_Dakota/ -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/North_Dakota/Beulah -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/North_Dakota/Center -rw-r--r-- 0/0 2380 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/North_Dakota/New_Salem -rw-r--r-- 0/0 1878 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Nuuk -rw-r--r-- 0/0 1508 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Ojinaga -rw-r--r-- 0/0 194 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Panama -rw-r--r-- 0/0 2094 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Pangnirtung -rw-r--r-- 0/0 282 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Paramaribo -rw-r--r-- 0/0 344 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Phoenix -rw-r--r-- 0/0 1446 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Port-au-Prince -rw-r--r-- 0/0 156 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Port_of_Spain -rw-r--r-- 0/0 588 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Porto_Velho -rw-r--r-- 0/0 246 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Puerto_Rico -rw-r--r-- 0/0 1902 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Punta_Arenas -rw-r--r-- 0/0 2122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Rainy_River -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Rankin_Inlet -rw-r--r-- 0/0 728 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Recife -rw-r--r-- 0/0 980 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Regina -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Resolute -rw-r--r-- 0/0 648 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Rio_Branco -rw-r--r-- 0/0 618 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Santarem -rw-r--r-- 0/0 2529 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Santiago -rw-r--r-- 0/0 482 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Santo_Domingo -rw-r--r-- 0/0 1456 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Sao_Paulo -rw-r--r-- 0/0 1916 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Scoresbysund -rw-r--r-- 0/0 2329 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Sitka -rw-r--r-- 0/0 3655 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Johns -rw-r--r-- 0/0 560 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Swift_Current -rw-r--r-- 0/0 264 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Tegucigalpa -rw-r--r-- 0/0 1514 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Thule -rw-r--r-- 0/0 2202 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Thunder_Bay -rw-r--r-- 0/0 2342 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Tijuana -rw-r--r-- 0/0 3494 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Toronto -rw-r--r-- 0/0 2892 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Vancouver -rw-r--r-- 0/0 1614 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Whitehorse -rw-r--r-- 0/0 2882 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Winnipeg -rw-r--r-- 0/0 2305 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Yakutat -rw-r--r-- 0/0 1966 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Yellowknife drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/ -rw-r--r-- 0/0 384 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Casey -rw-r--r-- 0/0 297 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Davis -rw-r--r-- 0/0 202 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/DumontDUrville -rw-r--r-- 0/0 2288 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Macquarie -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Mawson -rw-r--r-- 0/0 1418 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Palmer -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Rothera -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Syowa -rw-r--r-- 0/0 1162 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Troll -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/Vostok drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Arctic/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/ -rw-r--r-- 0/0 1017 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Almaty -rw-r--r-- 0/0 1863 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Amman -rw-r--r-- 0/0 1208 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Anadyr -rw-r--r-- 0/0 1003 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Aqtau -rw-r--r-- 0/0 1033 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Aqtobe -rw-r--r-- 0/0 637 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ashgabat -rw-r--r-- 0/0 1011 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Atyrau -rw-r--r-- 0/0 995 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Baghdad -rw-r--r-- 0/0 1255 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Baku -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Bangkok -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Barnaul -rw-r--r-- 0/0 2166 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Beirut -rw-r--r-- 0/0 999 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Bishkek -rw-r--r-- 0/0 215 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Brunei -rw-r--r-- 0/0 1243 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Chita -rw-r--r-- 0/0 977 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Choibalsan -rw-r--r-- 0/0 404 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Colombo -rw-r--r-- 0/0 2306 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Damascus -rw-r--r-- 0/0 361 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Dhaka -rw-r--r-- 0/0 239 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Dili -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Dubai -rw-r--r-- 0/0 607 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Dushanbe -rw-r--r-- 0/0 2028 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Famagusta -rw-r--r-- 0/0 2450 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Gaza -rw-r--r-- 0/0 2478 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Hebron -rw-r--r-- 0/0 375 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ho_Chi_Minh -rw-r--r-- 0/0 1217 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Hong_Kong -rw-r--r-- 0/0 907 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Hovd -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Irkutsk -rw-r--r-- 0/0 383 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Jakarta -rw-r--r-- 0/0 237 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Jayapura -rw-r--r-- 0/0 2388 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Jerusalem -rw-r--r-- 0/0 220 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kabul -rw-r--r-- 0/0 1184 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kamchatka -rw-r--r-- 0/0 403 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Karachi -rw-r--r-- 0/0 224 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kathmandu -rw-r--r-- 0/0 1297 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Khandyga -rw-r--r-- 0/0 303 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kolkata -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Krasnoyarsk -rw-r--r-- 0/0 415 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kuala_Lumpur -rw-r--r-- 0/0 507 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kuching -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Macau -rw-r--r-- 0/0 1244 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Magadan -rw-r--r-- 0/0 274 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Makassar -rw-r--r-- 0/0 350 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Manila -rw-r--r-- 0/0 2002 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Nicosia -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Novokuznetsk -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Novosibirsk -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Omsk -rw-r--r-- 0/0 1025 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Oral -rw-r--r-- 0/0 381 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Pontianak -rw-r--r-- 0/0 253 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Pyongyang -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Qatar -rw-r--r-- 0/0 1033 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Qostanay -rw-r--r-- 0/0 1047 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Qyzylorda -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Riyadh -rw-r--r-- 0/0 1220 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Sakhalin -rw-r--r-- 0/0 605 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Samarkand -rw-r--r-- 0/0 645 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Seoul -rw-r--r-- 0/0 573 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Shanghai -rw-r--r-- 0/0 415 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Singapore -rw-r--r-- 0/0 1230 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Srednekolymsk -rw-r--r-- 0/0 781 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Taipei -rw-r--r-- 0/0 621 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tashkent -rw-r--r-- 0/0 1071 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tbilisi -rw-r--r-- 0/0 1264 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tehran -rw-r--r-- 0/0 215 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Thimphu -rw-r--r-- 0/0 309 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tokyo -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tomsk -rw-r--r-- 0/0 907 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ulaanbaatar -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Urumqi -rw-r--r-- 0/0 1276 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ust-Nera -rw-r--r-- 0/0 1230 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Vladivostok -rw-r--r-- 0/0 1229 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Yakutsk -rw-r--r-- 0/0 288 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Yangon -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Yekaterinburg -rw-r--r-- 0/0 1199 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Yerevan drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/ -rw-r--r-- 0/0 3484 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Azores -rw-r--r-- 0/0 2416 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Bermuda -rw-r--r-- 0/0 1897 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Canary -rw-r--r-- 0/0 270 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Cape_Verde -rw-r--r-- 0/0 1815 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Faroe -rw-r--r-- 0/0 3475 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Madeira -rw-r--r-- 0/0 1174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Reykjavik -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/South_Georgia -rw-r--r-- 0/0 1242 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Stanley drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/ -rw-r--r-- 0/0 2231 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Adelaide -rw-r--r-- 0/0 441 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Brisbane -rw-r--r-- 0/0 2283 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Broken_Hill -rw-r--r-- 0/0 334 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Darwin -rw-r--r-- 0/0 492 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Eucla -rw-r--r-- 0/0 2394 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Hobart -rw-r--r-- 0/0 511 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Lindeman -rw-r--r-- 0/0 1880 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Lord_Howe -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Melbourne -rw-r--r-- 0/0 468 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Perth -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Sydney drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Brazil/ -rw-r--r-- 0/0 2102 1970-01-01 01:00 ./usr/share/zoneinfo/posix/CET -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/posix/CST6CDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Chile/ -rw-r--r-- 0/0 1876 1970-01-01 01:00 ./usr/share/zoneinfo/posix/EET -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/posix/EST -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/posix/EST5EDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/ -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+1 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+10 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+11 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+12 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+2 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+3 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+4 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+5 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+6 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+7 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+8 -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+9 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-1 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-10 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-11 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-12 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-13 -rw-r--r-- 0/0 122 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-14 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-2 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-3 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-4 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-5 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-6 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-7 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-8 -rw-r--r-- 0/0 121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-9 -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/UTC drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/ -rw-r--r-- 0/0 2940 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Amsterdam -rw-r--r-- 0/0 1742 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Andorra -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Astrakhan -rw-r--r-- 0/0 2262 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Athens -rw-r--r-- 0/0 1948 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Belgrade -rw-r--r-- 0/0 2326 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Berlin -rw-r--r-- 0/0 2961 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Brussels -rw-r--r-- 0/0 2212 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Bucharest -rw-r--r-- 0/0 2396 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Budapest -rw-r--r-- 0/0 2436 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Chisinau -rw-r--r-- 0/0 2151 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Copenhagen -rw-r--r-- 0/0 3522 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Dublin -rw-r--r-- 0/0 3052 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Gibraltar -rw-r--r-- 0/0 1900 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Helsinki -rw-r--r-- 0/0 1961 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Istanbul -rw-r--r-- 0/0 1523 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Kaliningrad -rw-r--r-- 0/0 2088 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Kiev -rw-r--r-- 0/0 1153 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Kirov -rw-r--r-- 0/0 3469 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Lisbon -rw-r--r-- 0/0 3678 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/London -rw-r--r-- 0/0 2960 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Luxembourg -rw-r--r-- 0/0 2628 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Madrid -rw-r--r-- 0/0 2620 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Malta -rw-r--r-- 0/0 1361 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Minsk -rw-r--r-- 0/0 2944 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Monaco -rw-r--r-- 0/0 1535 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Moscow -rw-r--r-- 0/0 2242 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Oslo -rw-r--r-- 0/0 2962 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Paris -rw-r--r-- 0/0 2329 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Prague -rw-r--r-- 0/0 2226 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Riga -rw-r--r-- 0/0 2683 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Rome -rw-r--r-- 0/0 1215 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Samara -rw-r--r-- 0/0 1183 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Saratov -rw-r--r-- 0/0 1481 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Simferopol -rw-r--r-- 0/0 2121 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Sofia -rw-r--r-- 0/0 1909 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Stockholm -rw-r--r-- 0/0 2178 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Tallinn -rw-r--r-- 0/0 2084 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Tirane -rw-r--r-- 0/0 1267 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Ulyanovsk -rw-r--r-- 0/0 2094 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Uzhgorod -rw-r--r-- 0/0 2228 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Vienna -rw-r--r-- 0/0 2190 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Vilnius -rw-r--r-- 0/0 1181 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Volgograd -rw-r--r-- 0/0 2696 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Warsaw -rw-r--r-- 0/0 2106 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Zaporozhye -rw-r--r-- 0/0 1909 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Zurich -rw-r--r-- 0/0 120 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Factory -rw-r--r-- 0/0 119 1970-01-01 01:00 ./usr/share/zoneinfo/posix/HST drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/ -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Chagos -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Christmas -rw-r--r-- 0/0 182 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Cocos -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Kerguelen -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Mahe -rw-r--r-- 0/0 211 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Maldives -rw-r--r-- 0/0 253 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Mauritius -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Reunion -rw-r--r-- 0/0 2102 1970-01-01 01:00 ./usr/share/zoneinfo/posix/MET -rw-r--r-- 0/0 118 1970-01-01 01:00 ./usr/share/zoneinfo/posix/MST -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/posix/MST7MDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Mexico/ -rw-r--r-- 0/0 2294 1970-01-01 01:00 ./usr/share/zoneinfo/posix/PST8PDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/ -rw-r--r-- 0/0 640 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Apia -rw-r--r-- 0/0 2451 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Auckland -rw-r--r-- 0/0 286 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Bougainville -rw-r--r-- 0/0 2078 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Chatham -rw-r--r-- 0/0 287 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Chuuk -rw-r--r-- 0/0 2233 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Easter -rw-r--r-- 0/0 538 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Efate -rw-r--r-- 0/0 250 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Enderbury -rw-r--r-- 0/0 212 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Fakaofo -rw-r--r-- 0/0 1061 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Fiji -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Funafuti -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Galapagos -rw-r--r-- 0/0 172 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Gambier -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Guadalcanal -rw-r--r-- 0/0 516 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Guam -rw-r--r-- 0/0 329 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Honolulu -rw-r--r-- 0/0 254 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Kiritimati -rw-r--r-- 0/0 377 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Kosrae -rw-r--r-- 0/0 340 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Kwajalein -rw-r--r-- 0/0 330 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Majuro -rw-r--r-- 0/0 181 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Marquesas -rw-r--r-- 0/0 268 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Nauru -rw-r--r-- 0/0 257 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Niue -rw-r--r-- 0/0 924 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Norfolk -rw-r--r-- 0/0 314 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Noumea -rw-r--r-- 0/0 187 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Pago_Pago -rw-r--r-- 0/0 190 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Palau -rw-r--r-- 0/0 214 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Pitcairn -rw-r--r-- 0/0 325 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Pohnpei -rw-r--r-- 0/0 196 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Port_Moresby -rw-r--r-- 0/0 593 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Rarotonga -rw-r--r-- 0/0 173 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Tahiti -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Tarawa -rw-r--r-- 0/0 384 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Tongatapu -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Wake -rw-r--r-- 0/0 174 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Wallis drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/ -rw-r--r-- 0/0 1873 1970-01-01 01:00 ./usr/share/zoneinfo/posix/WET drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/ -rw-r--r-- 0/0 696 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Abidjan -rw-r--r-- 0/0 1624 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Accra -rw-r--r-- 0/0 1291 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Algiers -rw-r--r-- 0/0 734 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Bissau -rw-r--r-- 0/0 2503 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Cairo -rw-r--r-- 0/0 2989 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Casablanca -rw-r--r-- 0/0 2590 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Ceuta -rw-r--r-- 0/0 2859 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/El_Aaiun -rw-r--r-- 0/0 802 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Johannesburg -rw-r--r-- 0/0 1239 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Juba -rw-r--r-- 0/0 1239 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Khartoum -rw-r--r-- 0/0 791 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Lagos -rw-r--r-- 0/0 697 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Maputo -rw-r--r-- 0/0 764 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Monrovia -rw-r--r-- 0/0 825 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Nairobi -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Ndjamena -rw-r--r-- 0/0 794 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Sao_Tome -rw-r--r-- 0/0 1181 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Tripoli -rw-r--r-- 0/0 1241 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Tunis -rw-r--r-- 0/0 1519 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Windhoek drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/ -rw-r--r-- 0/0 2896 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Adak -rw-r--r-- 0/0 2911 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Anchorage -rw-r--r-- 0/0 1436 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Araguaina drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/ -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Buenos_Aires -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Catamarca -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Cordoba -rw-r--r-- 0/0 1612 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Jujuy -rw-r--r-- 0/0 1654 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/La_Rioja -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Mendoza -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Rio_Gallegos -rw-r--r-- 0/0 1612 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Salta -rw-r--r-- 0/0 1654 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/San_Juan -rw-r--r-- 0/0 1670 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/San_Luis -rw-r--r-- 0/0 1668 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Tucuman -rw-r--r-- 0/0 1640 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/Ushuaia -rw-r--r-- 0/0 2608 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Asuncion -rw-r--r-- 0/0 876 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Atikokan -rw-r--r-- 0/0 1576 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Bahia -rw-r--r-- 0/0 2114 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Bahia_Banderas -rw-r--r-- 0/0 870 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Barbados -rw-r--r-- 0/0 1128 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Belem -rw-r--r-- 0/0 2154 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Belize -rw-r--r-- 0/0 838 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Blanc-Sablon -rw-r--r-- 0/0 1184 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Boa_Vista -rw-r--r-- 0/0 802 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Bogota -rw-r--r-- 0/0 2934 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Boise -rw-r--r-- 0/0 2624 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cambridge_Bay -rw-r--r-- 0/0 1996 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Campo_Grande -rw-r--r-- 0/0 1342 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cancun -rw-r--r-- 0/0 820 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Caracas -rw-r--r-- 0/0 750 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cayenne -rw-r--r-- 0/0 4116 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Chicago -rw-r--r-- 0/0 2048 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Chihuahua -rw-r--r-- 0/0 872 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Costa_Rica -rw-r--r-- 0/0 764 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Creston -rw-r--r-- 0/0 1968 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cuiaba -rw-r--r-- 0/0 738 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Curacao -rw-r--r-- 0/0 1238 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Danmarkshavn -rw-r--r-- 0/0 2154 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Dawson -rw-r--r-- 0/0 1590 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Dawson_Creek -rw-r--r-- 0/0 2984 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Denver -rw-r--r-- 0/0 2770 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Detroit -rw-r--r-- 0/0 2872 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Edmonton -rw-r--r-- 0/0 1216 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Eirunepe -rw-r--r-- 0/0 776 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/El_Salvador -rw-r--r-- 0/0 2780 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Fort_Nelson -rw-r--r-- 0/0 1268 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Fortaleza -rw-r--r-- 0/0 2732 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Glace_Bay -rw-r--r-- 0/0 3750 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Goose_Bay -rw-r--r-- 0/0 2398 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Grand_Turk -rw-r--r-- 0/0 832 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Guatemala -rw-r--r-- 0/0 802 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Guayaquil -rw-r--r-- 0/0 792 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Guyana -rw-r--r-- 0/0 3964 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Halifax -rw-r--r-- 0/0 2968 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Havana -rw-r--r-- 0/0 980 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Hermosillo drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/ -rw-r--r-- 0/0 2206 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Indianapolis -rw-r--r-- 0/0 2968 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Knox -rw-r--r-- 0/0 2262 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Marengo -rw-r--r-- 0/0 2444 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Petersburg -rw-r--r-- 0/0 2224 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Tell_City -rw-r--r-- 0/0 1954 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Vevay -rw-r--r-- 0/0 2234 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Vincennes -rw-r--r-- 0/0 2318 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indiana/Winamac -rw-r--r-- 0/0 2454 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Inuvik -rw-r--r-- 0/0 2572 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Iqaluit -rw-r--r-- 0/0 1038 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Jamaica -rw-r--r-- 0/0 2893 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Juneau drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Kentucky/ -rw-r--r-- 0/0 3312 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Kentucky/Louisville -rw-r--r-- 0/0 2892 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Kentucky/Monticello -rw-r--r-- 0/0 788 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/La_Paz -rw-r--r-- 0/0 962 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Lima -rw-r--r-- 0/0 3376 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Los_Angeles -rw-r--r-- 0/0 1296 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Maceio -rw-r--r-- 0/0 994 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Managua -rw-r--r-- 0/0 1156 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Manaus -rw-r--r-- 0/0 788 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Martinique -rw-r--r-- 0/0 1942 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Matamoros -rw-r--r-- 0/0 2090 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Mazatlan -rw-r--r-- 0/0 2814 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Menominee -rw-r--r-- 0/0 1982 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Merida -rw-r--r-- 0/0 1963 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Metlakatla -rw-r--r-- 0/0 2144 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Mexico_City -rw-r--r-- 0/0 2222 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Miquelon -rw-r--r-- 0/0 3694 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Moncton -rw-r--r-- 0/0 1942 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Monterrey -rw-r--r-- 0/0 2090 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Montevideo -rw-r--r-- 0/0 2928 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Nassau -rw-r--r-- 0/0 4076 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/New_York -rw-r--r-- 0/0 2662 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Nipigon -rw-r--r-- 0/0 2907 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Nome -rw-r--r-- 0/0 1268 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Noronha drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/North_Dakota/ -rw-r--r-- 0/0 2920 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/North_Dakota/Beulah -rw-r--r-- 0/0 2920 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/North_Dakota/Center -rw-r--r-- 0/0 2920 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/North_Dakota/New_Salem -rw-r--r-- 0/0 2418 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Nuuk -rw-r--r-- 0/0 2048 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Ojinaga -rw-r--r-- 0/0 734 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Panama -rw-r--r-- 0/0 2634 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Pangnirtung -rw-r--r-- 0/0 822 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Paramaribo -rw-r--r-- 0/0 884 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Phoenix -rw-r--r-- 0/0 1986 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Port-au-Prince -rw-r--r-- 0/0 696 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Port_of_Spain -rw-r--r-- 0/0 1128 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Porto_Velho -rw-r--r-- 0/0 786 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Puerto_Rico -rw-r--r-- 0/0 2442 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Punta_Arenas -rw-r--r-- 0/0 2662 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Rainy_River -rw-r--r-- 0/0 2456 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Rankin_Inlet -rw-r--r-- 0/0 1268 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Recife -rw-r--r-- 0/0 1520 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Regina -rw-r--r-- 0/0 2456 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Resolute -rw-r--r-- 0/0 1188 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Rio_Branco -rw-r--r-- 0/0 1158 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Santarem -rw-r--r-- 0/0 3069 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Santiago -rw-r--r-- 0/0 1022 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Santo_Domingo -rw-r--r-- 0/0 1996 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Sao_Paulo -rw-r--r-- 0/0 2456 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Scoresbysund -rw-r--r-- 0/0 2869 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Sitka -rw-r--r-- 0/0 4195 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Johns -rw-r--r-- 0/0 1100 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Swift_Current -rw-r--r-- 0/0 804 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Tegucigalpa -rw-r--r-- 0/0 2054 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Thule -rw-r--r-- 0/0 2742 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Thunder_Bay -rw-r--r-- 0/0 2882 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Tijuana -rw-r--r-- 0/0 4034 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Toronto -rw-r--r-- 0/0 3432 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Vancouver -rw-r--r-- 0/0 2154 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Whitehorse -rw-r--r-- 0/0 3422 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Winnipeg -rw-r--r-- 0/0 2845 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Yakutat -rw-r--r-- 0/0 2506 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Yellowknife drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/ -rw-r--r-- 0/0 924 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Casey -rw-r--r-- 0/0 837 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Davis -rw-r--r-- 0/0 742 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/DumontDUrville -rw-r--r-- 0/0 2828 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Macquarie -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Mawson -rw-r--r-- 0/0 1958 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Palmer -rw-r--r-- 0/0 712 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Rothera -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Syowa -rw-r--r-- 0/0 1702 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Troll -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/Vostok drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Arctic/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/ -rw-r--r-- 0/0 1557 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Almaty -rw-r--r-- 0/0 2403 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Amman -rw-r--r-- 0/0 1748 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Anadyr -rw-r--r-- 0/0 1543 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Aqtau -rw-r--r-- 0/0 1573 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Aqtobe -rw-r--r-- 0/0 1177 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ashgabat -rw-r--r-- 0/0 1551 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Atyrau -rw-r--r-- 0/0 1535 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Baghdad -rw-r--r-- 0/0 1795 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Baku -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Bangkok -rw-r--r-- 0/0 1781 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Barnaul -rw-r--r-- 0/0 2706 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Beirut -rw-r--r-- 0/0 1539 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Bishkek -rw-r--r-- 0/0 755 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Brunei -rw-r--r-- 0/0 1783 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Chita -rw-r--r-- 0/0 1517 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Choibalsan -rw-r--r-- 0/0 944 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Colombo -rw-r--r-- 0/0 2846 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Damascus -rw-r--r-- 0/0 901 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Dhaka -rw-r--r-- 0/0 779 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Dili -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Dubai -rw-r--r-- 0/0 1147 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Dushanbe -rw-r--r-- 0/0 2568 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Famagusta -rw-r--r-- 0/0 2990 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Gaza -rw-r--r-- 0/0 3018 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Hebron -rw-r--r-- 0/0 915 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ho_Chi_Minh -rw-r--r-- 0/0 1757 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Hong_Kong -rw-r--r-- 0/0 1447 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Hovd -rw-r--r-- 0/0 1807 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Irkutsk -rw-r--r-- 0/0 923 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Jakarta -rw-r--r-- 0/0 777 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Jayapura -rw-r--r-- 0/0 2928 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Jerusalem -rw-r--r-- 0/0 760 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kabul -rw-r--r-- 0/0 1724 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kamchatka -rw-r--r-- 0/0 943 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Karachi -rw-r--r-- 0/0 764 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kathmandu -rw-r--r-- 0/0 1837 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Khandyga -rw-r--r-- 0/0 843 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kolkata -rw-r--r-- 0/0 1769 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Krasnoyarsk -rw-r--r-- 0/0 955 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kuala_Lumpur -rw-r--r-- 0/0 1047 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kuching -rw-r--r-- 0/0 1781 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Macau -rw-r--r-- 0/0 1784 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Magadan -rw-r--r-- 0/0 814 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Makassar -rw-r--r-- 0/0 890 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Manila -rw-r--r-- 0/0 2542 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Nicosia -rw-r--r-- 0/0 1723 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Novokuznetsk -rw-r--r-- 0/0 1781 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Novosibirsk -rw-r--r-- 0/0 1769 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Omsk -rw-r--r-- 0/0 1565 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Oral -rw-r--r-- 0/0 921 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Pontianak -rw-r--r-- 0/0 793 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Pyongyang -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Qatar -rw-r--r-- 0/0 1573 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Qostanay -rw-r--r-- 0/0 1587 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Qyzylorda -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Riyadh -rw-r--r-- 0/0 1760 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Sakhalin -rw-r--r-- 0/0 1145 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Samarkand -rw-r--r-- 0/0 1185 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Seoul -rw-r--r-- 0/0 1113 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Shanghai -rw-r--r-- 0/0 955 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Singapore -rw-r--r-- 0/0 1770 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Srednekolymsk -rw-r--r-- 0/0 1321 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Taipei -rw-r--r-- 0/0 1161 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tashkent -rw-r--r-- 0/0 1611 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tbilisi -rw-r--r-- 0/0 1804 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tehran -rw-r--r-- 0/0 755 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Thimphu -rw-r--r-- 0/0 849 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tokyo -rw-r--r-- 0/0 1781 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tomsk -rw-r--r-- 0/0 1447 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ulaanbaatar -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Urumqi -rw-r--r-- 0/0 1816 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ust-Nera -rw-r--r-- 0/0 1770 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Vladivostok -rw-r--r-- 0/0 1769 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Yakutsk -rw-r--r-- 0/0 828 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Yangon -rw-r--r-- 0/0 1807 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Yekaterinburg -rw-r--r-- 0/0 1739 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Yerevan drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/ -rw-r--r-- 0/0 4024 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Azores -rw-r--r-- 0/0 2956 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Bermuda -rw-r--r-- 0/0 2437 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Canary -rw-r--r-- 0/0 810 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Cape_Verde -rw-r--r-- 0/0 2355 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Faroe -rw-r--r-- 0/0 4015 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Madeira -rw-r--r-- 0/0 1714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Reykjavik -rw-r--r-- 0/0 712 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/South_Georgia -rw-r--r-- 0/0 1782 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Stanley drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/ -rw-r--r-- 0/0 2771 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Adelaide -rw-r--r-- 0/0 981 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Brisbane -rw-r--r-- 0/0 2823 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Broken_Hill -rw-r--r-- 0/0 874 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Darwin -rw-r--r-- 0/0 1032 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Eucla -rw-r--r-- 0/0 2934 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Hobart -rw-r--r-- 0/0 1051 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Lindeman -rw-r--r-- 0/0 2420 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Lord_Howe -rw-r--r-- 0/0 2752 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Melbourne -rw-r--r-- 0/0 1008 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Perth -rw-r--r-- 0/0 2752 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Sydney drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Brazil/ -rw-r--r-- 0/0 2642 1970-01-01 01:00 ./usr/share/zoneinfo/right/CET -rw-r--r-- 0/0 2834 1970-01-01 01:00 ./usr/share/zoneinfo/right/CST6CDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/ drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Chile/ -rw-r--r-- 0/0 2416 1970-01-01 01:00 ./usr/share/zoneinfo/right/EET -rw-r--r-- 0/0 658 1970-01-01 01:00 ./usr/share/zoneinfo/right/EST -rw-r--r-- 0/0 2834 1970-01-01 01:00 ./usr/share/zoneinfo/right/EST5EDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/ -rw-r--r-- 0/0 658 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+1 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+10 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+11 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+12 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+2 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+3 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+4 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+5 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+6 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+7 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+8 -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+9 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-1 -rw-r--r-- 0/0 662 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-10 -rw-r--r-- 0/0 662 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-11 -rw-r--r-- 0/0 662 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-12 -rw-r--r-- 0/0 662 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-13 -rw-r--r-- 0/0 662 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-14 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-2 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-3 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-4 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-5 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-6 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-7 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-8 -rw-r--r-- 0/0 661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-9 -rw-r--r-- 0/0 658 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/UTC drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/ -rw-r--r-- 0/0 3480 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Amsterdam -rw-r--r-- 0/0 2282 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Andorra -rw-r--r-- 0/0 1723 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Astrakhan -rw-r--r-- 0/0 2802 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Athens -rw-r--r-- 0/0 2488 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Belgrade -rw-r--r-- 0/0 2866 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Berlin -rw-r--r-- 0/0 3501 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Brussels -rw-r--r-- 0/0 2752 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Bucharest -rw-r--r-- 0/0 2936 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Budapest -rw-r--r-- 0/0 2976 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Chisinau -rw-r--r-- 0/0 2691 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Copenhagen -rw-r--r-- 0/0 4062 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Dublin -rw-r--r-- 0/0 3592 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Gibraltar -rw-r--r-- 0/0 2440 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Helsinki -rw-r--r-- 0/0 2501 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Istanbul -rw-r--r-- 0/0 2063 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Kaliningrad -rw-r--r-- 0/0 2628 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Kiev -rw-r--r-- 0/0 1693 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Kirov -rw-r--r-- 0/0 4009 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Lisbon -rw-r--r-- 0/0 4218 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/London -rw-r--r-- 0/0 3500 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Luxembourg -rw-r--r-- 0/0 3168 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Madrid -rw-r--r-- 0/0 3160 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Malta -rw-r--r-- 0/0 1901 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Minsk -rw-r--r-- 0/0 3484 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Monaco -rw-r--r-- 0/0 2075 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Moscow -rw-r--r-- 0/0 2782 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Oslo -rw-r--r-- 0/0 3502 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Paris -rw-r--r-- 0/0 2869 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Prague -rw-r--r-- 0/0 2766 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Riga -rw-r--r-- 0/0 3223 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Rome -rw-r--r-- 0/0 1755 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Samara -rw-r--r-- 0/0 1723 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Saratov -rw-r--r-- 0/0 2021 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Simferopol -rw-r--r-- 0/0 2661 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Sofia -rw-r--r-- 0/0 2449 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Stockholm -rw-r--r-- 0/0 2718 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Tallinn -rw-r--r-- 0/0 2624 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Tirane -rw-r--r-- 0/0 1807 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Ulyanovsk -rw-r--r-- 0/0 2634 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Uzhgorod -rw-r--r-- 0/0 2768 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Vienna -rw-r--r-- 0/0 2730 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Vilnius -rw-r--r-- 0/0 1721 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Volgograd -rw-r--r-- 0/0 3236 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Warsaw -rw-r--r-- 0/0 2646 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Zaporozhye -rw-r--r-- 0/0 2449 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Zurich -rw-r--r-- 0/0 660 1970-01-01 01:00 ./usr/share/zoneinfo/right/Factory -rw-r--r-- 0/0 659 1970-01-01 01:00 ./usr/share/zoneinfo/right/HST drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/ -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Chagos -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Christmas -rw-r--r-- 0/0 722 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Cocos -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Kerguelen -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Mahe -rw-r--r-- 0/0 751 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Maldives -rw-r--r-- 0/0 793 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Mauritius -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Reunion -rw-r--r-- 0/0 2642 1970-01-01 01:00 ./usr/share/zoneinfo/right/MET -rw-r--r-- 0/0 658 1970-01-01 01:00 ./usr/share/zoneinfo/right/MST -rw-r--r-- 0/0 2834 1970-01-01 01:00 ./usr/share/zoneinfo/right/MST7MDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Mexico/ -rw-r--r-- 0/0 2834 1970-01-01 01:00 ./usr/share/zoneinfo/right/PST8PDT drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/ -rw-r--r-- 0/0 1180 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Apia -rw-r--r-- 0/0 2991 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Auckland -rw-r--r-- 0/0 826 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Bougainville -rw-r--r-- 0/0 2618 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Chatham -rw-r--r-- 0/0 827 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Chuuk -rw-r--r-- 0/0 2773 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Easter -rw-r--r-- 0/0 1078 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Efate -rw-r--r-- 0/0 790 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Enderbury -rw-r--r-- 0/0 752 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Fakaofo -rw-r--r-- 0/0 1601 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Fiji -rw-r--r-- 0/0 714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Funafuti -rw-r--r-- 0/0 794 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Galapagos -rw-r--r-- 0/0 712 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Gambier -rw-r--r-- 0/0 714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Guadalcanal -rw-r--r-- 0/0 1056 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Guam -rw-r--r-- 0/0 869 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Honolulu -rw-r--r-- 0/0 794 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Kiritimati -rw-r--r-- 0/0 917 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Kosrae -rw-r--r-- 0/0 880 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Kwajalein -rw-r--r-- 0/0 870 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Majuro -rw-r--r-- 0/0 721 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Marquesas -rw-r--r-- 0/0 808 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Nauru -rw-r--r-- 0/0 797 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Niue -rw-r--r-- 0/0 1464 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Norfolk -rw-r--r-- 0/0 854 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Noumea -rw-r--r-- 0/0 727 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Pago_Pago -rw-r--r-- 0/0 730 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Palau -rw-r--r-- 0/0 754 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Pitcairn -rw-r--r-- 0/0 865 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Pohnpei -rw-r--r-- 0/0 736 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Port_Moresby -rw-r--r-- 0/0 1133 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Rarotonga -rw-r--r-- 0/0 713 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Tahiti -rw-r--r-- 0/0 714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Tarawa -rw-r--r-- 0/0 924 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Tongatapu -rw-r--r-- 0/0 714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Wake -rw-r--r-- 0/0 714 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Wallis drwxr-xr-x 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/ -rw-r--r-- 0/0 2413 1970-01-01 01:00 ./usr/share/zoneinfo/right/WET -rw-r--r-- 0/0 111475 1970-01-01 01:00 ./usr/share/zoneinfo/tzdata.zi -rw-r--r-- 0/0 19321 1970-01-01 01:00 ./usr/share/zoneinfo/zone.tab -rw-r--r-- 0/0 17835 1970-01-01 01:00 ./usr/share/zoneinfo/zone1970.tab lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Addis_Ababa -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Asmara -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Asmera -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Bamako -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Bangui -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Banjul -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Blantyre -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Brazzaville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Bujumbura -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Conakry -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Dakar -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Dar_es_Salaam -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Djibouti -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Douala -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Freetown -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Gaborone -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Harare -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Kampala -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Kigali -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Kinshasa -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Libreville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Lome -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Luanda -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Lubumbashi -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Lusaka -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Malabo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Maseru -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Mbabane -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Mogadishu -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Niamey -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Nouakchott -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Ouagadougou -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Porto-Novo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Africa/Timbuktu -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Anguilla -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Antigua -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Argentina/ComodRivadavia -> Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Aruba -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Atka -> Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Buenos_Aires -> Argentina/Buenos_Aires lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Catamarca -> Argentina/Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cayman -> Panama lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Coral_Harbour -> Atikokan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Cordoba -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Dominica -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Ensenada -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Fort_Wayne -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Godthab -> Nuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Grenada -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Guadeloupe -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Indianapolis -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Jujuy -> Argentina/Jujuy lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Knox_IN -> Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Kralendijk -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Louisville -> Kentucky/Louisville lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Lower_Princes -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Marigot -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Mendoza -> Argentina/Mendoza lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Montreal -> Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Montserrat -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Porto_Acre -> Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Rosario -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Santa_Isabel -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Shiprock -> Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Barthelemy -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Kitts -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Lucia -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Thomas -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/St_Vincent -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Tortola -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/America/Virgin -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/McMurdo -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Antarctica/South_Pole -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Arctic/Longyearbyen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Aden -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ashkhabad -> Ashgabat lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Bahrain -> Qatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Calcutta -> Kolkata lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Chongqing -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Chungking -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Dacca -> Dhaka lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Harbin -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Istanbul -> ../Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kashgar -> Urumqi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Katmandu -> Kathmandu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Kuwait -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Macao -> Macau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Muscat -> Dubai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Phnom_Penh -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Rangoon -> Yangon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Saigon -> Ho_Chi_Minh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Tel_Aviv -> Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Thimbu -> Thimphu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ujung_Pandang -> Makassar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Ulan_Bator -> Ulaanbaatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Asia/Vientiane -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Faeroe -> Faroe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/Jan_Mayen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Atlantic/St_Helena -> ../Africa/Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/ACT -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Canberra -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Currie -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/LHI -> Lord_Howe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/NSW -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/North -> Darwin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Queensland -> Brisbane lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/South -> Adelaide lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Tasmania -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Victoria -> Melbourne lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/West -> Perth lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Australia/Yancowinna -> Broken_Hill lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Brazil/Acre -> ../America/Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Brazil/DeNoronha -> ../America/Noronha lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Brazil/East -> ../America/Sao_Paulo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Brazil/West -> ../America/Manaus lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Atlantic -> ../America/Halifax lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Central -> ../America/Winnipeg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Eastern -> ../America/Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Mountain -> ../America/Edmonton lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Newfoundland -> ../America/St_Johns lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Pacific -> ../America/Vancouver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Saskatchewan -> ../America/Regina lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Canada/Yukon -> ../America/Whitehorse lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Chile/Continental -> ../America/Santiago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Chile/EasterIsland -> ../Pacific/Easter lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Cuba -> America/Havana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Egypt -> Africa/Cairo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Eire -> Europe/Dublin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT+0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT-0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/GMT0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/Greenwich -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/UCT -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/Universal -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Etc/Zulu -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Belfast -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Bratislava -> Prague lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Busingen -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Guernsey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Isle_of_Man -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Jersey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Ljubljana -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Mariehamn -> Helsinki lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Nicosia -> ../Asia/Nicosia lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Podgorica -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/San_Marino -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Sarajevo -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Skopje -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Tiraspol -> Chisinau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Vaduz -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Vatican -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Europe/Zagreb -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GB -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GB-Eire -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GMT -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GMT+0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GMT-0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/GMT0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Greenwich -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Hongkong -> Asia/Hong_Kong lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Iceland -> Atlantic/Reykjavik lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Antananarivo -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Comoro -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Indian/Mayotte -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Iran -> Asia/Tehran lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Israel -> Asia/Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Jamaica -> America/Jamaica lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Japan -> Asia/Tokyo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Kwajalein -> Pacific/Kwajalein lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Libya -> Africa/Tripoli lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Mexico/BajaNorte -> ../America/Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Mexico/BajaSur -> ../America/Mazatlan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Mexico/General -> ../America/Mexico_City lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/NZ -> Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/NZ-CHAT -> Pacific/Chatham lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Navajo -> America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/PRC -> Asia/Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Johnston -> Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Midway -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Ponape -> Pohnpei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Saipan -> Guam lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Samoa -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Truk -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Pacific/Yap -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Poland -> Europe/Warsaw lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Portugal -> Europe/Lisbon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/ROC -> Asia/Taipei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/ROK -> Asia/Seoul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Singapore -> Asia/Singapore lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Turkey -> Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/UCT -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Alaska -> ../America/Anchorage lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Aleutian -> ../America/Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Arizona -> ../America/Phoenix lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Central -> ../America/Chicago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/East-Indiana -> ../America/Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Eastern -> ../America/New_York lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Hawaii -> ../Pacific/Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Indiana-Starke -> ../America/Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Michigan -> ../America/Detroit lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Mountain -> ../America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Pacific -> ../America/Los_Angeles lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/US/Samoa -> ../Pacific/Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/UTC -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Universal -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/W-SU -> Europe/Moscow lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/Zulu -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/localtime -> /etc/localtime lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Addis_Ababa -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Asmara -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Asmera -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Bamako -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Bangui -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Banjul -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Blantyre -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Brazzaville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Bujumbura -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Conakry -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Dakar -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Dar_es_Salaam -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Djibouti -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Douala -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Freetown -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Gaborone -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Harare -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Kampala -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Kigali -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Kinshasa -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Libreville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Lome -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Luanda -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Lubumbashi -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Lusaka -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Malabo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Maseru -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Mbabane -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Mogadishu -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Niamey -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Nouakchott -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Ouagadougou -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Porto-Novo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Africa/Timbuktu -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Anguilla -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Antigua -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Argentina/ComodRivadavia -> Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Aruba -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Atka -> Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Buenos_Aires -> Argentina/Buenos_Aires lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Catamarca -> Argentina/Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cayman -> Panama lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Coral_Harbour -> Atikokan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Cordoba -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Dominica -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Ensenada -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Fort_Wayne -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Godthab -> Nuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Grenada -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Guadeloupe -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Indianapolis -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Jujuy -> Argentina/Jujuy lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Knox_IN -> Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Kralendijk -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Louisville -> Kentucky/Louisville lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Lower_Princes -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Marigot -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Mendoza -> Argentina/Mendoza lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Montreal -> Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Montserrat -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Porto_Acre -> Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Rosario -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Santa_Isabel -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Shiprock -> Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Barthelemy -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Kitts -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Lucia -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Thomas -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/St_Vincent -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Tortola -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/America/Virgin -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/McMurdo -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Antarctica/South_Pole -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Arctic/Longyearbyen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Aden -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ashkhabad -> Ashgabat lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Bahrain -> Qatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Calcutta -> Kolkata lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Chongqing -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Chungking -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Dacca -> Dhaka lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Harbin -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Istanbul -> ../Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kashgar -> Urumqi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Katmandu -> Kathmandu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Kuwait -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Macao -> Macau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Muscat -> Dubai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Phnom_Penh -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Rangoon -> Yangon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Saigon -> Ho_Chi_Minh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Tel_Aviv -> Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Thimbu -> Thimphu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ujung_Pandang -> Makassar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Ulan_Bator -> Ulaanbaatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Asia/Vientiane -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Faeroe -> Faroe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/Jan_Mayen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Atlantic/St_Helena -> ../Africa/Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/ACT -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Canberra -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Currie -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/LHI -> Lord_Howe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/NSW -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/North -> Darwin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Queensland -> Brisbane lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/South -> Adelaide lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Tasmania -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Victoria -> Melbourne lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/West -> Perth lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Australia/Yancowinna -> Broken_Hill lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Brazil/Acre -> ../America/Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Brazil/DeNoronha -> ../America/Noronha lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Brazil/East -> ../America/Sao_Paulo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Brazil/West -> ../America/Manaus lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Atlantic -> ../America/Halifax lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Central -> ../America/Winnipeg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Eastern -> ../America/Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Mountain -> ../America/Edmonton lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Newfoundland -> ../America/St_Johns lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Pacific -> ../America/Vancouver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Saskatchewan -> ../America/Regina lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Canada/Yukon -> ../America/Whitehorse lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Chile/Continental -> ../America/Santiago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Chile/EasterIsland -> ../Pacific/Easter lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Cuba -> America/Havana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Egypt -> Africa/Cairo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Eire -> Europe/Dublin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT+0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT-0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/GMT0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/Greenwich -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/UCT -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/Universal -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Etc/Zulu -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Belfast -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Bratislava -> Prague lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Busingen -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Guernsey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Isle_of_Man -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Jersey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Ljubljana -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Mariehamn -> Helsinki lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Nicosia -> ../Asia/Nicosia lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Podgorica -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/San_Marino -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Sarajevo -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Skopje -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Tiraspol -> Chisinau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Vaduz -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Vatican -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Europe/Zagreb -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GB -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GB-Eire -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GMT -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GMT+0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GMT-0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/GMT0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Greenwich -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Hongkong -> Asia/Hong_Kong lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Iceland -> Atlantic/Reykjavik lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Antananarivo -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Comoro -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Indian/Mayotte -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Iran -> Asia/Tehran lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Israel -> Asia/Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Jamaica -> America/Jamaica lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Japan -> Asia/Tokyo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Kwajalein -> Pacific/Kwajalein lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Libya -> Africa/Tripoli lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Mexico/BajaNorte -> ../America/Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Mexico/BajaSur -> ../America/Mazatlan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Mexico/General -> ../America/Mexico_City lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/NZ -> Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/NZ-CHAT -> Pacific/Chatham lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Navajo -> America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/PRC -> Asia/Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Johnston -> Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Midway -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Ponape -> Pohnpei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Saipan -> Guam lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Samoa -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Truk -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Pacific/Yap -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Poland -> Europe/Warsaw lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Portugal -> Europe/Lisbon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/ROC -> Asia/Taipei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/ROK -> Asia/Seoul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Singapore -> Asia/Singapore lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Turkey -> Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/UCT -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Alaska -> ../America/Anchorage lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Aleutian -> ../America/Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Arizona -> ../America/Phoenix lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Central -> ../America/Chicago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/East-Indiana -> ../America/Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Eastern -> ../America/New_York lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Hawaii -> ../Pacific/Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Indiana-Starke -> ../America/Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Michigan -> ../America/Detroit lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Mountain -> ../America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Pacific -> ../America/Los_Angeles lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/US/Samoa -> ../Pacific/Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/UTC -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Universal -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/W-SU -> Europe/Moscow lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posix/Zulu -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/posixrules -> America/New_York lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Addis_Ababa -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Asmara -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Asmera -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Bamako -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Bangui -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Banjul -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Blantyre -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Brazzaville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Bujumbura -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Conakry -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Dakar -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Dar_es_Salaam -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Djibouti -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Douala -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Freetown -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Gaborone -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Harare -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Kampala -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Kigali -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Kinshasa -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Libreville -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Lome -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Luanda -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Lubumbashi -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Lusaka -> Maputo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Malabo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Maseru -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Mbabane -> Johannesburg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Mogadishu -> Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Niamey -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Nouakchott -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Ouagadougou -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Porto-Novo -> Lagos lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Africa/Timbuktu -> Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Anguilla -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Antigua -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Argentina/ComodRivadavia -> Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Aruba -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Atka -> Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Buenos_Aires -> Argentina/Buenos_Aires lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Catamarca -> Argentina/Catamarca lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cayman -> Panama lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Coral_Harbour -> Atikokan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Cordoba -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Dominica -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Ensenada -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Fort_Wayne -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Godthab -> Nuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Grenada -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Guadeloupe -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Indianapolis -> Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Jujuy -> Argentina/Jujuy lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Knox_IN -> Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Kralendijk -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Louisville -> Kentucky/Louisville lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Lower_Princes -> Curacao lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Marigot -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Mendoza -> Argentina/Mendoza lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Montreal -> Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Montserrat -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Porto_Acre -> Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Rosario -> Argentina/Cordoba lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Santa_Isabel -> Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Shiprock -> Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Barthelemy -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Kitts -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Lucia -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Thomas -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/St_Vincent -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Tortola -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/America/Virgin -> Port_of_Spain lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/McMurdo -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Antarctica/South_Pole -> ../Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Arctic/Longyearbyen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Aden -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ashkhabad -> Ashgabat lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Bahrain -> Qatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Calcutta -> Kolkata lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Chongqing -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Chungking -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Dacca -> Dhaka lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Harbin -> Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Istanbul -> ../Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kashgar -> Urumqi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Katmandu -> Kathmandu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Kuwait -> Riyadh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Macao -> Macau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Muscat -> Dubai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Phnom_Penh -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Rangoon -> Yangon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Saigon -> Ho_Chi_Minh lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Tel_Aviv -> Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Thimbu -> Thimphu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ujung_Pandang -> Makassar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Ulan_Bator -> Ulaanbaatar lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Asia/Vientiane -> Bangkok lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Faeroe -> Faroe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/Jan_Mayen -> ../Europe/Oslo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Atlantic/St_Helena -> ../Africa/Abidjan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/ACT -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Canberra -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Currie -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/LHI -> Lord_Howe lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/NSW -> Sydney lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/North -> Darwin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Queensland -> Brisbane lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/South -> Adelaide lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Tasmania -> Hobart lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Victoria -> Melbourne lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/West -> Perth lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Australia/Yancowinna -> Broken_Hill lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Brazil/Acre -> ../America/Rio_Branco lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Brazil/DeNoronha -> ../America/Noronha lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Brazil/East -> ../America/Sao_Paulo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Brazil/West -> ../America/Manaus lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Atlantic -> ../America/Halifax lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Central -> ../America/Winnipeg lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Eastern -> ../America/Toronto lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Mountain -> ../America/Edmonton lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Newfoundland -> ../America/St_Johns lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Pacific -> ../America/Vancouver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Saskatchewan -> ../America/Regina lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Canada/Yukon -> ../America/Whitehorse lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Chile/Continental -> ../America/Santiago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Chile/EasterIsland -> ../Pacific/Easter lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Cuba -> America/Havana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Egypt -> Africa/Cairo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Eire -> Europe/Dublin lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT+0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT-0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/GMT0 -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/Greenwich -> GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/UCT -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/Universal -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Etc/Zulu -> UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Belfast -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Bratislava -> Prague lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Busingen -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Guernsey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Isle_of_Man -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Jersey -> London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Ljubljana -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Mariehamn -> Helsinki lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Nicosia -> ../Asia/Nicosia lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Podgorica -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/San_Marino -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Sarajevo -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Skopje -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Tiraspol -> Chisinau lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Vaduz -> Zurich lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Vatican -> Rome lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Europe/Zagreb -> Belgrade lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GB -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GB-Eire -> Europe/London lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GMT -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GMT+0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GMT-0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/GMT0 -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Greenwich -> Etc/GMT lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Hongkong -> Asia/Hong_Kong lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Iceland -> Atlantic/Reykjavik lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Antananarivo -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Comoro -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Indian/Mayotte -> ../Africa/Nairobi lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Iran -> Asia/Tehran lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Israel -> Asia/Jerusalem lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Jamaica -> America/Jamaica lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Japan -> Asia/Tokyo lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Kwajalein -> Pacific/Kwajalein lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Libya -> Africa/Tripoli lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Mexico/BajaNorte -> ../America/Tijuana lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Mexico/BajaSur -> ../America/Mazatlan lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Mexico/General -> ../America/Mexico_City lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/NZ -> Pacific/Auckland lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/NZ-CHAT -> Pacific/Chatham lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Navajo -> America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/PRC -> Asia/Shanghai lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Johnston -> Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Midway -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Ponape -> Pohnpei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Saipan -> Guam lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Samoa -> Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Truk -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Pacific/Yap -> Chuuk lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Poland -> Europe/Warsaw lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Portugal -> Europe/Lisbon lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/ROC -> Asia/Taipei lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/ROK -> Asia/Seoul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Singapore -> Asia/Singapore lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Turkey -> Europe/Istanbul lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/UCT -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Alaska -> ../America/Anchorage lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Aleutian -> ../America/Adak lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Arizona -> ../America/Phoenix lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Central -> ../America/Chicago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/East-Indiana -> ../America/Indiana/Indianapolis lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Eastern -> ../America/New_York lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Hawaii -> ../Pacific/Honolulu lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Indiana-Starke -> ../America/Indiana/Knox lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Michigan -> ../America/Detroit lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Mountain -> ../America/Denver lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Pacific -> ../America/Los_Angeles lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/US/Samoa -> ../Pacific/Pago_Pago lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/UTC -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Universal -> Etc/UTC lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/W-SU -> Europe/Moscow lrwxrwxrwx 0/0 0 1970-01-01 01:00 ./usr/share/zoneinfo/right/Zulu -> Etc/UTC tar: Removing leading `/' from member names dr-xr-xr-x 0/0 0 1970-01-01 01:00 /var dr-xr-xr-x 0/0 0 1970-01-01 01:00 /var/run dr-xr-xr-x 0/0 0 1970-01-01 01:00 /var/run/ko -r-xr-xr-x 0/0 26910 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/ceph/ceph.yaml -r-xr-xr-x 0/0 44619 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/github/github.yaml -r-xr-xr-x 0/0 29748 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/gitlab/gitlab.yaml -r-xr-xr-x 0/0 19512 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/kafka/source.yaml -r-xr-xr-x 0/0 42641 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/rabbitmq/rabbitmq-source.yaml -r-xr-xr-x 0/0 37966 1970-01-01 01:00 /var/run/ko/eventing-source/1.4/redis/redis-source.yaml -r-xr-xr-x 0/0 26910 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/ceph/ceph.yaml -r-xr-xr-x 0/0 44619 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/github/github.yaml -r-xr-xr-x 0/0 29748 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/gitlab/gitlab.yaml -r-xr-xr-x 0/0 19512 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/kafka/source.yaml -r-xr-xr-x 0/0 42572 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/rabbitmq/rabbitmq-source.yaml -r-xr-xr-x 0/0 37966 1970-01-01 01:00 /var/run/ko/eventing-source/1.5/redis/redis-source.yaml -r-xr-xr-x 0/0 26910 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/ceph/ceph.yaml -r-xr-xr-x 0/0 44619 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/github/github.yaml -r-xr-xr-x 0/0 29748 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/gitlab/gitlab.yaml -r-xr-xr-x 0/0 19512 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/kafka/source.yaml -r-xr-xr-x 0/0 40350 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/rabbitmq/rabbitmq-source.yaml -r-xr-xr-x 0/0 37966 1970-01-01 01:00 /var/run/ko/eventing-source/1.6/redis/redis-source.yaml -r-xr-xr-x 0/0 26910 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/ceph/ceph.yaml -r-xr-xr-x 0/0 44619 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/github/github.yaml -r-xr-xr-x 0/0 29748 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/gitlab/gitlab.yaml -r-xr-xr-x 0/0 19512 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/kafka/source.yaml -r-xr-xr-x 0/0 40350 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/rabbitmq/rabbitmq-source.yaml -r-xr-xr-x 0/0 37966 1970-01-01 01:00 /var/run/ko/eventing-source/1.7/redis/redis-source.yaml -r-xr-xr-x 0/0 15772 1970-01-01 01:00 /var/run/ko/ingress/1.4/kourier.yaml -r-xr-xr-x 0/0 4980 1970-01-01 01:00 /var/run/ko/ingress/1.4/net-contour.yaml -r-xr-xr-x 0/0 19552 1970-01-01 01:00 /var/run/ko/ingress/1.4/net-istio.yaml -r-xr-xr-x 0/0 15772 1970-01-01 01:00 /var/run/ko/ingress/1.5/kourier.yaml -r-xr-xr-x 0/0 4980 1970-01-01 01:00 /var/run/ko/ingress/1.5/net-contour.yaml -r-xr-xr-x 0/0 19364 1970-01-01 01:00 /var/run/ko/ingress/1.5/net-istio.yaml -r-xr-xr-x 0/0 16431 1970-01-01 01:00 /var/run/ko/ingress/1.6/kourier.yaml -r-xr-xr-x 0/0 4980 1970-01-01 01:00 /var/run/ko/ingress/1.6/net-contour.yaml -r-xr-xr-x 0/0 19364 1970-01-01 01:00 /var/run/ko/ingress/1.6/net-istio.yaml -r-xr-xr-x 0/0 16479 1970-01-01 01:00 /var/run/ko/ingress/1.7/kourier.yaml -r-xr-xr-x 0/0 4980 1970-01-01 01:00 /var/run/ko/ingress/1.7/net-contour.yaml -r-xr-xr-x 0/0 19364 1970-01-01 01:00 /var/run/ko/ingress/1.7/net-istio.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.0/1-eventing-crds.yaml -r-xr-xr-x 0/0 200026 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.0/2-eventing-core.yaml -r-xr-xr-x 0/0 44441 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.0/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.0/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.0/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.1/1-eventing-crds.yaml -r-xr-xr-x 0/0 200026 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.1/2-eventing-core.yaml -r-xr-xr-x 0/0 44441 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.1/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.1/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.1/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.2/1-eventing-crds.yaml -r-xr-xr-x 0/0 200212 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.2/2-eventing-core.yaml -r-xr-xr-x 0/0 44441 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.2/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.2/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.4.2/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.0/1-eventing-crds.yaml -r-xr-xr-x 0/0 200212 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.0/2-eventing-core.yaml -r-xr-xr-x 0/0 43649 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.0/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.0/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.0/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.1/1-eventing-crds.yaml -r-xr-xr-x 0/0 200212 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.1/2-eventing-core.yaml -r-xr-xr-x 0/0 43649 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.1/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.1/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.1/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.2/1-eventing-crds.yaml -r-xr-xr-x 0/0 200212 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.2/2-eventing-core.yaml -r-xr-xr-x 0/0 43649 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.2/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.2/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.2/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.3/1-eventing-crds.yaml -r-xr-xr-x 0/0 200212 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.3/2-eventing-core.yaml -r-xr-xr-x 0/0 43649 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.3/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.3/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.5.3/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.6.0/1-eventing-crds.yaml -r-xr-xr-x 0/0 200208 1970-01-01 01:00 /var/run/ko/knative-eventing/1.6.0/2-eventing-core.yaml -r-xr-xr-x 0/0 43650 1970-01-01 01:00 /var/run/ko/knative-eventing/1.6.0/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.6.0/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.6.0/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.0/1-eventing-crds.yaml -r-xr-xr-x 0/0 200230 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.0/2-eventing-core.yaml -r-xr-xr-x 0/0 43650 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.0/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.0/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.0/5-eventing-post-install.yaml -r-xr-xr-x 0/0 127313 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.1/1-eventing-crds.yaml -r-xr-xr-x 0/0 200230 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.1/2-eventing-core.yaml -r-xr-xr-x 0/0 43650 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.1/3-in-memory-channel.yaml -r-xr-xr-x 0/0 20659 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.1/4-mt-channel-broker.yaml -r-xr-xr-x 0/0 6796 1970-01-01 01:00 /var/run/ko/knative-eventing/1.7.1/5-eventing-post-install.yaml -r-xr-xr-x 0/0 225842 1970-01-01 01:00 /var/run/ko/knative-serving/1.4.0/1-serving-crds.yaml -r-xr-xr-x 0/0 332124 1970-01-01 01:00 /var/run/ko/knative-serving/1.4.0/2-serving-core.yaml -r-xr-xr-x 0/0 3569 1970-01-01 01:00 /var/run/ko/knative-serving/1.4.0/3-serving-hpa.yaml -r-xr-xr-x 0/0 2250 1970-01-01 01:00 /var/run/ko/knative-serving/1.4.0/4-serving-post-install-jobs.yaml -r-xr-xr-x 0/0 225842 1970-01-01 01:00 /var/run/ko/knative-serving/1.5.0/1-serving-crds.yaml -r-xr-xr-x 0/0 332641 1970-01-01 01:00 /var/run/ko/knative-serving/1.5.0/2-serving-core.yaml -r-xr-xr-x 0/0 3569 1970-01-01 01:00 /var/run/ko/knative-serving/1.5.0/3-serving-hpa.yaml -r-xr-xr-x 0/0 2250 1970-01-01 01:00 /var/run/ko/knative-serving/1.5.0/4-serving-post-install-jobs.yaml -r-xr-xr-x 0/0 287155 1970-01-01 01:00 /var/run/ko/knative-serving/1.6.0/1-serving-crds.yaml -r-xr-xr-x 0/0 393330 1970-01-01 01:00 /var/run/ko/knative-serving/1.6.0/2-serving-core.yaml -r-xr-xr-x 0/0 3569 1970-01-01 01:00 /var/run/ko/knative-serving/1.6.0/3-serving-hpa.yaml -r-xr-xr-x 0/0 2250 1970-01-01 01:00 /var/run/ko/knative-serving/1.6.0/4-serving-post-install-jobs.yaml -r-xr-xr-x 0/0 289068 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.0/1-serving-crds.yaml -r-xr-xr-x 0/0 396802 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.0/2-serving-core.yaml -r-xr-xr-x 0/0 3569 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.0/3-serving-hpa.yaml -r-xr-xr-x 0/0 2267 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.0/4-serving-post-install-jobs.yaml -r-xr-xr-x 0/0 289068 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.1/1-serving-crds.yaml -r-xr-xr-x 0/0 396858 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.1/2-serving-core.yaml -r-xr-xr-x 0/0 3569 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.1/3-serving-hpa.yaml -r-xr-xr-x 0/0 2267 1970-01-01 01:00 /var/run/ko/knative-serving/1.7.1/4-serving-post-install-jobs.yaml dr-xr-xr-x 0/0 0 1970-01-01 01:00 ko-app -r-xr-xr-x 0/0 47240434 1970-01-01 01:00 /ko-app/operator ```

It's possible that different container runtimes handle these apparently non-existing directories entries differently, or that they differ in the root user's ability to open a directory with no permissions.

Fix

I couldn't find a Dockerfile or any other file that shows how the manifests are copied into the docker file. So I fixed it with a multi-stage docker build:

FROM gcr.io/knative-releases/knative.dev/operator/cmd/operator:v1.7.0 as get_manifests

FROM alpine:latest as chmodder
COPY --from=get_manifests /var/run/ko /var/run/ko
RUN chmod -R 755 /var/run/ko

FROM gcr.io/knative-releases/knative.dev/operator/cmd/operator:v1.7.0
COPY --from=chmodder /var/run/ko /var/run/ko

I pushed the image to edwinmowen/knative-operator:v1.7.0 on dockerhub for linux/arm64 and linux/amd64. After switching to the image the operator doesn't crash anymore and creates the resources for the knative serving.