時間同步腳本
阿新 • • 發佈:2018-06-28
pool clock pre 阿裏雲 exp RF .net 雲同步 man
#!/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)
時間同步腳本