首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 操作系统 > UNIXLINUX >

linux 时间同步设立

2012-07-05 
linux 时间同步设置1. 修改 /etc/sysconfig/clock文件内容为ZONEAsia/ShanghaiUTCfalseARCfalse2. 执

linux 时间同步设置
1. 修改 /etc/sysconfig/clock文件内容为
ZONE="Asia/Shanghai"
UTC=false
ARC=false

2. 执行下面操作
rm -rf /etc/localtime
ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
rdate -s time-nw.nist.gov

如需频繁同步,添加定时任务
3.执行 crontab -e, 加入以下内容。每10分钟同步一次时间, 23:55同步一次
0-59/10 * * * * rdate -s time-nw.nist.gov
55 23 * * * rdate -s time-nw.nist.gov

热点排行