系统相关
首页 > 系统相关> > Ubuntu设置系统时间与网络时间同步

Ubuntu设置系统时间与网络时间同步

作者:互联网

网上同步时间

    1.  安装ntpdate工具

    # sudo apt-get install ntpdate

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

    # ntpdate cn.pool.ntp.org

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

    # hwclock –systohc

cn.pool.ntp.org是位于中国的公共NTP服务器,用来同步你的时间(如果你的时间与服务器的时间截不同的话,可能无法同步时间哟,甚至连sudo reboot这样的指令也无法执行)。

错误:

bind() fails: Permission denied-解决办法

出现这一问题主要是更新时间需要用root权限,在执行更新ntp时间指令前加入sudo,输入对应帐户的密码即可更新成功了。例子如下:

sudo ntpdate cn.pool.ntp.org

标签:同步,cn,ntpdate,sudo,Ubuntu,时间,ntp
来源: https://blog.csdn.net/zhuzi2129/article/details/121944357