系统相关
首页 > 系统相关> > Linux 使用ntpdate自动对时

Linux 使用ntpdate自动对时

作者:互联网

原文链接:http://www.cnblogs.com/GMCisMarkdownCraftsman/p/3769790.html

1. 建立crontab的脚本

    $ vi /etc/cron.daily/ntpupdatedaily
添加如下行:
    #!/bin/bash
    ntpdate stdtime.gov.hk

2. 添加到crontab任务

    $ crontab -e
在最后添加(表示每天晚上20:00以root身份运行/etc/cron.daily/ntpupdatedaily):
    00 20 * * * root /etc/cron.daily/ntpupdatedaily

By Leslie Guan

转载于:https://www.cnblogs.com/GMCisMarkdownCraftsman/p/3769790.html

标签:ntpdate,ntpupdatedaily,crontab,cron,etc,添加,daily,Linux,对时
来源: https://blog.csdn.net/weixin_30851867/article/details/96968782