防止运行“tar xzf”时显示时间戳消息

防止运行“tar xzf”时显示时间戳消息

运行时tar xzf,如何防止出现此消息(防止显示时间戳消息):

tar: node: time stamp 2011-06-07 02:02:30 is 8309 s in the future
tar: user/Node: time stamp 2011-06-07 01:56:05 is 7924 s in the future

答案1

tar 有一个选项可以抑制此消息 [1]:

-m, --touch
不提取文件修改时间

但是,您可能还应该检查系统时钟是否有问题。

[1]http://unixhelp.ed.ac.uk/CGI/man-cgi?tar

答案2

你可以抑制警告同时保留时间戳:

tar xzf myarchive.tar --warning=no-timestamp

相关内容