Linux tar命令解压时提示时间戳异常的处理办法

在Linux服务器上的文件会有3个时间戳信息 访问时间(Access)、修改时间(Modify)、改变时间(Change),都是存放在该文件的Inode里面

问题描述:

  公司网站是前后端分离的,所有的静态页面全部都需要单独部署,使用的是云服务。部署方式是通过 jenkins 从指定的 SVN 地址把 前端静态页面检出到 jenkins服务器,且每次检出的代码前都会把上一次的全部删除掉,也就是在检出代码的时候所有的文件都是重新创建的,时间戳每次都是当前系统的时间;由于公司出口带宽比较小,为了提高传输效率,会在Jenkins服务器上先把源代码(tar)压缩后再上传到云服务器解压后部署。再部署的过程中从Jenkins控制台看到在云服务器对代码解压缩的时候提示 “tar: xxx: time stamp 2017-09-03 08:32:34 is 444.030325759 s in the future” 大概意思就是文件的时间戳信息异常

问题分析:

  tar命令在打包文件的时候会包含文件的所有属性,如时间戳、文件名、大小等等,根据 tar 命令报错的信息,tar命令在解压提取原来文件时间戳准备创建文件的时候遇到 Jenkins服务器时间 比 云服务器时间要新(in the future),就报了上面的错误。

解决办法:

  1、所有服务器 用定时任务每个几分钟就同步同一个国内公开时间服务器(ntp1.aliyun.com 国内阿里云的,或其他的都行),或者直接搭建时间同步服务器(NTP)

  2、tar命令在解压的时候加上 -m 参数,作用是不提取压缩包里文件的修改时间,以当前系统时间为准创建时间戳。

提示:所有服务器时间应该需要一致的,不然其他服务也有可能出现时间的问题。更好的解决办法就是这2个解决方案都使用。

报错复现:

[[email protected] home]# date
Sun Sep  3 08:32:30 CST 2017
[[email protected] home]# touch {1..5}.log
[[email protected] home]# ll
total 0
-rw-r--r--. 1 root root 0 Sep  3 08:32 1.log
-rw-r--r--. 1 root root 0 Sep  3 08:32 2.log
-rw-r--r--. 1 root root 0 Sep  3 08:32 3.log
-rw-r--r--. 1 root root 0 Sep  3 08:32 4.log
-rw-r--r--. 1 root root 0 Sep  3 08:32 5.log
[[email protected] home]# tar zcf home.tar.gz *
[[email protected] home]# rm -f *.log
[[email protected] home]# date -s "20170903 08:25:00"
Sun Sep  3 08:25:00 CST 2017
[[email protected] home]# tar xf home.tar.gz
tar: 1.log: time stamp 2017-09-03 08:32:34 is 444.030325759 s in the future
tar: 2.log: time stamp 2017-09-03 08:32:34 is 444.029975178 s in the future
tar: 3.log: time stamp 2017-09-03 08:32:34 is 444.029878161 s in the future
tar: 4.log: time stamp 2017-09-03 08:32:34 is 444.029821403 s in the future
tar: 5.log: time stamp 2017-09-03 08:32:34 is 444.029553439 s in the future
[[email protected] home]# ll
total 4
-rw-r--r--. 1 root root   0 Sep  3  2017 1.log    # 虽然时间戳有问题,但还是解压了,不确定会不会有其他问题
-rw-r--r--. 1 root root   0 Sep  3  2017 2.log
-rw-r--r--. 1 root root   0 Sep  3  2017 3.log
-rw-r--r--. 1 root root   0 Sep  3  2017 4.log
-rw-r--r--. 1 root root   0 Sep  3  2017 5.log
-rw-r--r--. 1 root root 136 Sep  3  2017 home.tar.gz
[[email protected] home]# stat 1.log
  File: `1.log‘
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: 802h/2050d    Inode: 917607      Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2017-09-03 08:25:09.967538065 +0800
Modify: 2017-09-03 08:32:34.000000000 +0800
Change: 2017-09-03 08:25:09.967999958 +0800
[[email protected] home]# rm -f *.log
[[email protected] home]# ll
total 4
-rw-r--r--. 1 root root 136 Sep  3  2017 home.tar.gz
[[email protected] home]# tar mxf home.tar.gz   # 加上 -m 参数后没有报错,且时间是当前系统时间
[[email protected] home]# ll
total 4
-rw-r--r--. 1 root root   0 Sep  3 08:26 1.log
-rw-r--r--. 1 root root   0 Sep  3 08:26 2.log
-rw-r--r--. 1 root root   0 Sep  3 08:26 3.log
-rw-r--r--. 1 root root   0 Sep  3 08:26 4.log
-rw-r--r--. 1 root root   0 Sep  3 08:26 5.log
-rw-r--r--. 1 root root 136 Sep  3  2017 home.tar.gz
[[email protected] home]# stat 1.log
  File: `1.log‘
  Size: 0             Blocks: 0          IO Block: 4096   regular empty file
Device: 802h/2050d    Inode: 917607      Links: 1
Access: (0644/-rw-r--r--)  Uid: (    0/    root)   Gid: (    0/    root)
Access: 2017-09-03 08:26:05.388000347 +0800
Modify: 2017-09-03 08:26:05.388000347 +0800
Change: 2017-09-03 08:26:05.388000347 +0800

[[email protected] home]# tar --help|fgrep ‘touch‘
-m, --touch don‘t extract file modified time

 
时间: 2024-10-02 21:40:09

Linux tar命令解压时提示时间戳异常的处理办法的相关文章

[转载] linux下tar命令解压到指定的目录

参考 http://blog.sina.com.cn/s/blog_62449fcf0100nfar.html linux下tar命令解压到指定的目录 : #tar zxvf /bbs.tar.zip -C /zzz/bbs //把根目录下的bbs.tar.zip解压到/zzz/bbs下,前提要保证存在/zzz/bbs这个目录 这个和cp命令有点不同,cp命令如果这个目录不存在,就会自动创建这个目录! 附:用tar命令打包 例:将 当前目录下的zzz文件 打包到当前目录下并命名为zzz.tar.

linux tar打包解压详解 解压到指定文件夹

编写shell脚本的时候经常需要解压缩到指定的文件夹,tar命令是最常用的 参考一下说明,其中注意-C的用法. tar命令 解压文件到指定目录:tar -zxvf /home/zjx/aa.tar.gz -C /home/zjx/pf tar [-cxtzjvfpPN] 文件与目录 ....参数:-c :建立一个压缩文件的参数指令(create 的意思):-x :解开一个压缩文件的参数指令!-t :查看 tarfile 里面的文件!特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存

linux 常用命令 – 解压文件(zip,rar,gz,tar.gz)

Linux下自带了一个unzip的程序可以解压缩文件, 解压命令是:unzip filename.zip 同样也提供了一个zip程序压缩zip文件,命令是 zip filename.zip files 会将files压缩到filename.zip 另外看看你的文件的后缀名,不同的后缀的文件解压和压缩的命令都不一样 总结一下 1.*.tar 用 tar –xvf 解压 2.*.gz 用 gzip -d或者gunzip 解压 3.*.tar.gz和*.tgz 用 tar –xzf 解压 4.*.bz

linux tar 压缩解压命令

tar命令: -c 压缩-x 解压缩-t 不解压的情况下查看文件内容-r 向压缩文件追加文件-u 更新压缩文件 以上参数必须和'-f'参数连用,且'-f'必须为最后一个参数,后接文档名 -z 对应gzip-j 对应bz2 原文出自:http://www.cnblogs.com/jyaray/archive/2011/04/30/2033362.html

tar命令解压、压缩gz/bz2/xz文件

1.处理.tar.gz 压缩:tar zcf FILE.tar.gz FILEDIR 解压:tar zxf FILE.tar.gz 2.处理.tar.bz2 压缩:tar jcf FILE.tar.bz2 FILEDIR 解压:tar jxf FILE.tar.bz2 3.处理.tar.xz 压缩:tar Jcf FILE.tar.xz FILEDIR 解压:tar Jxf FILE.tar.xz

linux tar压缩解压命令的详细解释

tar [-cxtzjvfpPN] 文件与目录 参数:-c :建立一个压缩文件的参数指令(create 的意思):-x :解开一个压缩文件的参数指令!-t :查看 tarfile 里面的文件!特别注意,在参数的下达中, c/x/t 仅能存在一个!不可同时存在!因为不可能同时压缩与解压缩.-z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩?-j :是否同时具有 bzip2 的属性?亦即是否需要用 bzip2 压缩?-v :压缩的过程中显示文件!这个常用,但不建议用在背景执行过程

linux中tar之解压和压缩常用

我们知道在windows中解压和压缩有两个非常强大的工具winRar和国产的好压工具,在linux中也有一款强大的解压和压缩工具.那就是大名鼎鼎的tar.我们首先看看tar命令的使用格式 语法:tar [主选项+辅选项] 文件或目录 主选项 c 创建新的档案文件.如果用户想备份一个目录或是一些文件,就要选择这个选项.相当于打包 x 从档案文件中释放文件.相当于拆包. t 列出档案文件的内容,查看已经备份了哪些文件 辅选项 -z :是否同时具有 gzip 的属性?亦即是否需要用 gzip 压缩或解

linux下如何解压 tar.lz 文件

今天遇到了这个问题.最后是这么解决的. 首先下载一个lizp 地址为 http://download.savannah.gnu.org/releases/lzip/lzlib/ 然后 解压 后,看install 文件 ./configure make make install make install-as-lzip 在终端中输入 lzip 如果能找到此命令,就安装成功 --help 查看命令解释 lzip -d 文件名 解压得到一个 .tar的文件 再用tar 命令解压即可

tar包解压后用户名改变

最近开发项目时在PC上wang用户及组下打包的tar包解压到嵌入式设备root用户下,文件目录及文件用户名改为dbus和dbus组,导致cron等应用异常. 出现此问题时可以通过修改相应文件(件)的用户和用户组,但不通用. 理想的方法是tar包解压时不保留用户信息,通过tar --help可知晓: tar --no-same-owner -zxvf xxx.tar.gz -C / 至于为什么用户名改为dbus,应该和用户ID有关,在PC上wang的用户ID和嵌入式设备上dbus的用户ID相同,此