Linux下tar命令的簡單使用及相關錯誤解決方案

來源:互聯網
上載者:User

tar 是Linux 下最常用的打包、壓縮公用程式,它在Linux 中扮演類似於WinZip 或WinRAR 在Windows 下的角色。下面是該工具的常用命令參數及運用舉例:
主要命令:
-c 建立包
-x 解包
-t 列出包中的內容
-r 增加檔案到指定包中
-u 更新包中的檔案
可選命令:
-j 建立或解開包時 使用bzip2 進行壓縮或解壓;
-z 建立或解開包時 使用gzip 進行壓縮或解壓;
-Z 建立或解開包時 使用compress 進行壓縮或解壓;
-f 後面跟指定的包檔案名稱;
-v 顯示打包/解包過程
-C 指定解包後的路徑
例如:
tar -czf tmp.tar.gz /tmp 將 “/tmp” 目錄壓縮打包存放為tmp.tar.gz;
tar -xzf tmp.tar.gz -C /home 將 tmp.tar.gz 包解到“/home” 目錄下;
tar -t tmp.tar.gz 查看 tmp.tar.gz 包中的檔案資訊;
tar解壓問題
如下所示,使用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]#

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.