如下所示,使用tar -zxvf解壓文件時遇到”gzip: stdin: not in gzip format“等錯誤:
復制代碼
代碼如下:
[root@DB-Server tmp]# [root@DB-Server tmp]# tar -zxvf Percona-XtraBackup-2.2.12-r8726828-el5-x86_64-bundle.tar gzip: stdin: not in gzip format tar: Child returned status 1 tar: Error exit delayed from previous errors
最終發現這個壓縮包沒有用gzip格式壓縮,所以不用加z參數,汗顏!
復制代碼
代碼如下:
[root@DB-Server tmp]# tar -xvf Percona-XtraBackup-2.2.12-r8726828-el5-x86_64-bundle.tar percona-xtrabackup-2.2.12-1.el5.x86_64.rpmpercona-xtrabackup-debuginfo-2.2.12-1.el5.x86_64.rpmpercona-xtrabackup-test-2.2.12-1.el5.x86_64.rpmYou have new mail in /var/spool/mail/root[root@DB-Server tmp]#