赞
踩
如果安装系统时没有设置时区,系统将使用默认UTC时区。在Linux上,有两种方式修改时区,分别为 timedatectl 修改 和 软链接修改 。
timedatectl(英文全拼:timedate control)命令用于在Linux 中设置或查询系统时间、日期和时区等配置。 在Linux 运维中,通常使用此命令来设置或更改当前的日期、时间和时区,或启用自动系统时钟与远程NTP 服务器同步,以确保Linux 系统始终保持正确的时间
timedatectl -h
打印系统的时区和所在时区的当前时间,并显示系统时钟服务同步以及NTP服务的状态
timedatectl
时区名称使用 地区/城市 格式作为命名,查看所有时区:
timedatectl list-timezones
如果设置上海时间,直接进行查找
timedatectl list-timezones | grep -i shanghai
# 显示
# Asia/Shanghai
这里需要 root 权限
# sudo timedatectl set-timezone UTC
sudo timedatectl set-timezone Asia/Shanghai
# 检查是否成功
timedatectl
Linux系统使用 /etc/localtime 存储着系统时区,是一个软链接,查看指向目录
ll /etc/localtime
# lrwxrwxrwx 1 root root 25 Aug 30 07:43 /etc/localtime -> /usr/share/zoneinfo/UTC
find /usr/share/zoneinfo -iname 'shanghai'
需要 root 权限
sudo rm -rf /etc/localtime
sudo ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
# 检查是否成功
date
# Wed Aug 30 16:10:58 CST 2023
参考链接:https://www.myfreax.com/how-to-set-or-change-timezone-in-linux/
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。