zhouziyuan

Ubuntu修改系统时间

在新版的ubuntu中,使用timedatectl 替换了ntpdate来进行时间管理。

1.查看当前时间状态

 查看当前时间状态 timedatectl status :

 1 res@ubuntu:~$ timedatectl status
 2                       Local time: 三 2019-01-02 17:22:13 PST
 3                   Universal time: 四 2019-01-03 01:22:13 UTC
 4                         RTC time: 三 2019-01-02 17:22:14
 5                        Time zone: America/Los_Angeles (PST, -0800)
 6        System clock synchronized: yes
 7 systemd-timesyncd.service active: yes
 8                  RTC in local TZ: yes

系统显示的时间是错误的,错误原因也是显而易见的,使用的是America/Los_Angeles的时区。

因此只要修改时区就能保证时间的正确。

2.修改时区

 所有的时区名称存储在/usr/share/zoneinfo文件中。

 执行命令timedatectl set-timezone "Asia/Shanghai" 就可以将时区设为上海时区。 

1 res@ubuntu:~$ timedatectl set-timezone "Asia/Shanghai"

 重新查看当前时间状态 timedatectl status :

1 res@ubuntu:~$ timedatectl status
2                       Local time: 四 2019-01-03 10:59:05 CST
3                   Universal time: 四 2019-01-03 02:59:05 UTC
4                         RTC time: 四 2019-01-03 10:59:05
5                        Time zone: Asia/Shanghai (CST, +0800)
6        System clock synchronized: no
7 systemd-timesyncd.service active: yes
8                  RTC in local TZ: yes

 此时时间已经正常了。

 

分类:

技术点:

相关文章:

  • 2021-11-29
  • 2021-11-18
  • 2021-04-30
  • 2022-02-15
  • 2021-04-12
  • 2021-12-21
  • 2021-12-21
  • 2021-12-15
猜你喜欢
  • 2021-12-21
  • 2021-12-21
  • 2022-12-23
  • 2021-12-19
  • 2021-09-27
相关资源
相似解决方案