土耳其的时区文件是否会有更新,因为从现在开始夏令时时区 GMT+3 将成为永久时区?
Is there going to be an update for the timezone file for Turkey, since the daylight saving timezone GMT+3 will be the permanent timezone from now on?
土耳其政府决定从现在起继续使用EEST(GMT+3)时区(夏令时区);从现在开始,土耳其时区将固定为 GMT+3。由于此更改,Linux 系统的时区文件是否会更新?什么时候发布?
只要决定留在当前时区,您就可以使用 GMT+3,直到从土耳其官方那里得到任何更新。
sudo unlink /etc/localtime
sudo ln -s /usr/share/zoneinfo/Etc/GMT+3 /etc/localtime
祝你好运!
看起来 vmware 不需要玩它,它的默认 UTC
相关文章
不要使用 +3,因为像 Etc/GMT+6 这样的区域是为了向后兼容 POSIX 标准而有意反转的。
下面使用 +3 而不是;
sudo unlink /etc/localtime
sudo ln -s /usr/share/zoneinfo/Etc/GMT-3 /etc/localtime
否则会颠倒过来,会有6小时的时差。
土耳其政府决定从现在起继续使用EEST(GMT+3)时区(夏令时区);从现在开始,土耳其时区将固定为 GMT+3。由于此更改,Linux 系统的时区文件是否会更新?什么时候发布?
只要决定留在当前时区,您就可以使用 GMT+3,直到从土耳其官方那里得到任何更新。
sudo unlink /etc/localtime
sudo ln -s /usr/share/zoneinfo/Etc/GMT+3 /etc/localtime
祝你好运!
看起来 vmware 不需要玩它,它的默认 UTC
相关文章
不要使用 +3,因为像 Etc/GMT+6 这样的区域是为了向后兼容 POSIX 标准而有意反转的。
下面使用 +3 而不是;
sudo unlink /etc/localtime
sudo ln -s /usr/share/zoneinfo/Etc/GMT-3 /etc/localtime
否则会颠倒过来,会有6小时的时差。