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"后, 就不會遇到那個錯誤了。