Ubuntu修改系统时间
版权声明:本文版权归Jitwxs所有,欢迎转载,但未经作者同意必须保留原文链接。 https://blog.csdn.net/yuanlaijike/article/details/78476139
在新版的ubuntu中,使用timedatectl 替换了ntpdate来进行时间管理。
1.查看当前时间状态
查看当前时间状态 timedatectl status :
[shell 1="wxs@ubuntu:~/6-1/task4$" 2="timedatectl" 3="status" 4="Local" 5="time:" 6="Tue" 7="2017-11-07" 8="18:14:30" 9="PST" 10="Universal" 11="time:" 12="Wed" 13="2017-11-08" 14="02:14:30" 15="UTC" 16="RTC" 17="time:" 18="Wed" 19="2017-11-08" 20="02:14:29" 21="Time" 22="zone:" 23="America/Los_Angeles" 24="(PST," 25="-0800)" 26="Network" 27="time" 28="on:" 29="yes" 30="NTP" 31="synchronized:" 32="yes" 33="RTC" 34="in" 35="local" 36="TZ:" 37="no" 38="[/shell" language="["]
系统显示的时间是错误的,错误原因也是显而易见的,使用的是America/Los_Angeles的时区。
因此只要修改时区就能保证时间的正确。
2.修改时区
所有的时区名称存储在/usr/share/zoneinfo文件中。
执行命令timedatectl set-timezone "Asia/Shanghai" 就可以将时区设为上海时区。
[shell]
==== AUTHENTICATING FOR org.freedesktop.timedate1.set-timezone ===
Authentication is required to set the system timezone.
Authenticating as: wxs,,, (wxs)
Password:
==== AUTHENTICATION COMPLETE ===
[/shell]
重新查看当前时间状态 timedatectl status :
[shell]
wxs@ubuntu:~/6-1/task4$ timedatectl status
Local time: Wed 2017-11-08 10:15:45 CST
Universal time: Wed 2017-11-08 02:15:45 UTC
RTC time: Wed 2017-11-08 02:15:45
Time zone: Asia/Shanghai (CST, +0800)
Network time on: yes
NTP synchronized: yes
RTC in local TZ: no
[/shell]
此时时间已经正常了。
---------------------
作者:Jitwxs
来源:CSDN
原文:https://blog.csdn.net/yuanlaijike/article/details/78476139
版权声明:本文为博主原创文章,转载请附上博文链接!