1. 程式人生 > >linux 檔案壓縮和解壓

linux 檔案壓縮和解壓

1.tar 命令:tar -zcvf boot.tgz /boot  把/boot目錄整合壓縮為boot.tgz檔案

解壓:tar -zxvf boot.tgz 

解壓到指定目錄:tar -zxvf boot.tgz -C /tmp

2.zip 命令解壓檔案和壓縮檔案

zip -r proficient.zip  proficient   把proficient 檔案 zip 壓縮為proficient.zip 檔案  請注意 proifcient 沒有斜槓/

解壓檔案zip

unzip proficient.zip -d ./   把proficient.zip 檔案解壓在當前目錄下

unzip -t  proficient.zip       檢視proficient.zip 檔案是否完整