ubuntu系统时间与网络时间同步设置方法

发布时间:2020-03-13编辑:脚本学堂
本文介绍了ubuntu下设置系统时间与网络时间同步的方法,如何确保ubunt系统时间的正确性,使其与网络上的时间服务器时间同步是个不错的选择哦。

linux时间分为system clock(系统时间)和real time clock (硬件时间,简称rtc)。

系统时间:指当前linux kernel中的时间。

硬件时间:主板上有电池供电的时间。
设置时区的命令: tzselect

设置localtime的命令:

sudo cp /usr/share/zoneinfo/asia/shanghai /etc/localtime
 

查看系统时间的命令:

#date

设置系统时间的命令:

#date –set(月/日/年 时:分:秒)

:#date –set “10/11/10 10:15”

查看硬件时间的命令:

# hwclock

设置硬件时间的命令:

# hwclock –set –date = (月/日/年 时:分:秒)

以上是手动设置时间到一个时间点,可能与当前网络的时间有误差。

以下是时间服务器上的时间同步的方法

1、安装ntpdate工具
 

# sudo apt-get install ntpdate

2、设置系统时间与网络时间同步
 

# ntpdate cn.pool.ntp.org

3、将系统时间写入硬件时间
 

# hwclock --systohc