时间同步脚本

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了时间同步脚本相关的知识,希望对你有一定的参考价值。

#!/usr/bin/env python
#coding:utf-8

#Example:
#阿里云同步
#ntpd -u ntp:ntp -p /var/run/ntpd.pid -g
#ntpdate time.nist.gov time.nuri.net 0.asia.pool.ntp.org 1.asia.pool.ntp.org 2.asia.pool.ntp.org 3.asia.pool.ntp.org

import os
command = [‘ntpdate time.nist.gov‘,
           ‘rm -rf /etc/localtime‘,
           ‘ln -s /usr/share/zoneinfo/Asia/Shanghai /etc/localtime‘,
           ‘hwclock -w‘,
           "export TZ=‘Asia/Shanghai‘",
           ‘echo "export TZ=‘Asia/Shanghai‘" >> /root/.bashrc‘]
for com in command:
    os.system(com)  

以上是关于时间同步脚本的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Toad for Oracle 中使用自定义代码片段?

同步代码 [重复]

代码片段:Shell脚本实现重复执行和多进程

#VSCode保存插件配置并使用 gist 管理代码片段

多线程 Thread 线程同步 synchronized

html 将以编程方式附加外部脚本文件的javascript代码片段,并按顺序排列。用于响应式网站,其中ma