linux下tar命令遇到error:"Error exit delayed from previous errors"的问题及解决
程序员文章站
2023-11-28 13:36:10
linux下tar命令遇到error:"Error exit delayed from previous errors"的问题... 12-06-28...
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"后,
就不会遇到那个错误了。
用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"后,
就不会遇到那个错误了。
下一篇: CSS3悬停效果案例应用