您的位置:首页 > 其它

解决:time stamp 2012-09-23 09:51:08 is 20484578 s in the future

2013-02-07 17:43 288 查看
在linux上,当我们解压缩、解包一个软件包时,有时会遇到下面的提示[root@vm3 ~]# tar zxvf memcache-2.2.7.tgz
package.xml
tar: package.xml: time stamp 2012-09-23 09:51:08 is 20484578 s in the future
memcache-2.2.7/config.m4
tar: memcache-2.2.7/config.m4: time stamp 2012-09-23 09:51:08 is 20484578 s in the future支持中文的系统提示如下:[root@vm3 ~]# tar zxvf memcache-2.2.7.tgz
package.xml
tar: package.xml: 时间戳 2012-09-23 09:51:08 是将来的 20484578 秒之后
memcache-2.2.7/config.m4
tar: memcache-2.2.7/config.m4: 时间戳 2012-09-23 09:51:08 是将来的 20484578 秒之后看上面紫色的提示信息,意思是软件包的创建时间是未来的时间,说明我们机器的时间不准确,进行时间校正即可解决:[root@vm3 ~]# date
Mon Jan 30 07:40:31 CST 2012
[root@vm3 ~]# ntpdate pool.ntp.org
7 Feb 17:34:09 ntpdate[13446]: step time server 202.112.29.82 offset 32348619.307297 sec
[root@vm3 ~]# date
Thu Feb 7 17:38:59 CST 2013ok,再次解压、解包,没有前面的提示了。
本文出自 “好运” 博客,请务必保留此出处http://haoyun.blog.51cto.com/2038762/1132948
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐