在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 2013
ok,再次解压、解包,没有前面的提示了。