Linux 修改系统时间及时区

修改时区

# timedatectl list-timezones |grep Shanghai    # 查找中国时区的完整名称
Asia/Shanghai
# timedatectl set-timezone Asia/Shanghai    # 其他时区以此类推
  • 修改时区,自动校正时间,将修改后的时间写入BIOS,以防系统重启后,失效
# hwclock -w
  • 查看硬件时间
# hwclock --show

image.png

修改系统时间

  • 例:将时间修改为2021-05-10 22:00:00
# date -s '2021-05-10 22:00:00'
  • 将修改后的系统时间写入BIOS,以防系统重启后,失效
# hwclock -w
  • 查看硬件时间
# hwclock --show

修改文件显示时间

例:

image.png

# vim ~/.bash_profile
# 添加以下内容
export TIME_STYLE='+%Y-%m-%d %H:%M:%S'
  • 修改生效
# source ~/.bash_profile

image.png


标题:Linux 修改系统时间及时区
作者:Mune
地址:https://cnxiaobai.com/articles/2021/05/10/1620655675859.html

    评论
    0 评论
avatar

取消