2021-05-12 14:32:11
tar命令解壓檔案報錯:stdin has more than one entry
2020-06-16 17:56:23
使用tar命令解壓.zip檔案的時候,遇到如下異常,
linuxidc@Ubuntu:~/Documents$ tar -xzvf wls1033_dev.zip
gzip: stdin has more than one entry--rest ignored
tar: Child returned status 2
tar: Error is not recoverable: exiting now
tar命令是呼叫了gunzip命令的,
對只有一個壓縮內容的檔案來解壓的時候才用tar, 而如果壓縮包裡有多個檔案被壓縮了,
tar命令不能繼續工作。可以採用unzip命令去解壓。
先檢視是否已安裝unzip,沒有安裝的話下載unzip。
然後解壓縮:
linuxidc@ubuntu:~/Documents$ unzip wls1033_dev,zip -d weblogic
解壓縮到當前資料夾下的weblogic資料夾下。
本文永久更新連結地址:http://www.linuxidc.com/Linux/2015-08/121193.htm
相關文章