我最近更改了时区,但不记得是哪一天。有没有办法知道我更改时区的日期是哪一天?
答案1
对于基于 systemd 的发行版:
journalctl | grep systemd-timedated
将显示日志仍然存在的所有时区更改对于类似于 Fedora 和 Arch 的发行版,运行
ls -l /etc/localtime
可以显示文件上次修改的日期。基于 Ubuntu 和 Debian 的发行版/etc/timezone
则使用它。
我最近更改了时区,但不记得是哪一天。有没有办法知道我更改时区的日期是哪一天?
对于基于 systemd 的发行版:journalctl | grep systemd-timedated
将显示日志仍然存在的所有时区更改
对于类似于 Fedora 和 Arch 的发行版,运行ls -l /etc/localtime
可以显示文件上次修改的日期。基于 Ubuntu 和 Debian 的发行版/etc/timezone
则使用它。