日期中的时区?

发布于 2024-10-06 15:10:33 字数 354 浏览 5 评论 0原文

date 从哪里开始Linux中获取时区信息的命令?

我在系统上看不到 /etc/localtime 文件和 /usr/share/zoneinfo 目录。不过,当我执行 date 命令时,我得到以下输出:

2010 年 12 月 9 日星期四 16:28:18 世界标准时间

请告诉我:该命令从哪里获取时区信息?

From where does the date command in Linux get the time zone information?

I cannot see the /etc/localtime file and the /usr/share/zoneinfo directory on my system. Still, when I execute the date command, I get the following output:

Thu Dec 9 16:28:18 UTC 2010

Kindly tell me: From where does the command get the time zone information?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

深居我梦 2024-10-13 15:10:33

不要忘记 UTC 是标准 Unix 系统在实时时钟中存储日期/时间的方式。如果您双启动到 Windows,则必须使用有趣的程序(请参阅 hwclock(8) 联机帮助页),因为 Windows 更喜欢将本地时间存储在CMOS实时时钟。

因此,date(1) 程序只是向您显示“我没有配置时区”的结果:

# date -u
Thu Dec  9 10:40:54 UTC 2010
# TZ=UTC date
Thu Dec  9 10:40:57 UTC 2010
# TZ=PST8PDT date
Thu Dec  9 02:41:02 PST 2010
#

Don't forget that UTC is how standard Unix systems store the date/time in the real time clock. You have to jump through hoops using funny programs (see the hwclock(8) manpage) if you dual-boot to Windows, which prefers the local time to be stored in the CMOS real time clock.

So the date(1) program is simply showing you the results of "I have no configured time zone":

# date -u
Thu Dec  9 10:40:54 UTC 2010
# TZ=UTC date
Thu Dec  9 10:40:57 UTC 2010
# TZ=PST8PDT date
Thu Dec  9 02:41:02 PST 2010
#
‘画卷フ 2024-10-13 15:10:33

来自 http://www.wikihow.com/Change-the-Timezone-in- Linux

在运行 Linux 的手机和其他小型设备上,时区
存储方式不同。它写在 /etc/TZ 中,格式为
例如,在 [4]。手动编辑此文件或使用
echo(例如,echo GMT0BST > /etc/TZ 设置时区
英国)。

来自http://www.radisys.com/files/support_downloads/03245-02_MPCMM0001_MPCMM0002_CMM_Software_TPS。 pdf

CMM 确定文件中维护的本地时区的偏移量
/etc/cmm/TZ 并自动更新时间。

From http://www.wikihow.com/Change-the-Timezone-in-Linux

On mobile phones and other small devices that run Linux, the time zone
is stored differently. It is written in /etc/TZ, in the format that is
described, for instance, in [4] . Edit this file manually or use
echo (for instance, echo GMT0BST > /etc/TZ to set the the timezone of
the United Kingdom).

From http://www.radisys.com/files/support_downloads/03245-02_MPCMM0001_MPCMM0002_CMM_Software_TPS.pdf

The CMM determines the offset to local timezone maintained in file
/etc/cmm/TZ and automatically updates the time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文