日期:2014-05-16  浏览次数:20804 次

linux下tar命令遇到error:"Error exit delayed from previous errors"
用tar命令(tar -cvfz src.tar.gz src)去压缩一个目录,遇到错误"Error exit delayed from previous errors"

原因选项"f" 表示The archive file name is given on the command line (required whenever the tar output is going to a file),f后边需要跟压缩文件的名字。


所以把tar命令从"tar -cvfz src.tar.gz src"改成"tar -czvf src.tar.gz src"后,就不会遇到那个错误了。

1楼pan_tian昨天 14:26
[code=python]nprint "python test,"n[/code]