linux檔案壓縮和解壓命令
在linux上我們需要傳送或者使用很多工具包都是壓縮包,我們就需要對該檔案進行壓縮或者解壓,但是linux不想windows那樣用滑鼠點點點就好了,linux上我們必須使用命令來完成這項工作。
1.打包檔案
tar -cvf 打包後的檔名 被打包檔案
看栗子:
[root@localhost code]# ls
shell
[root@localhost code]# tar -cvf shell.tar shell
shell/
[root@localhost code]# ls
shell shell.tar
2.對打包檔案進行壓縮
tar -czvf 壓縮後檔名 被壓縮檔案
shell shell.tar
[root@localhost code]# tar -czvf shell.tar.gz shell.tar
shell.tar
[root@localhost code]# ls
shell shell.tar shell.tar.gz
這樣就壓縮完畢
現在我們可以刪除包檔案和原始檔再去解壓壓縮包
[root@localhost code]# ls
fq shell shell.tar.gz sher zlb
[root@localhost code]# rm -rf shell
[root@localhost code]# ls
fq shell.tar.gz sher zlb
[root@localhost code]# tar -xzvf shell.tar.gz
shell/
shell/sher
[root@localhost code]# ls
fq shell shell.tar.gz sher zlb
打包——壓縮——解壓——解包 全過程
[root@localhost code]# ls
shell
[root@localhost code]# tar -cvf shell.tar shell
shell/
shell/sher
[root@localhost code]# ls
shell shell.tar
[root@localhost code]# rm shell -rf
[root@localhost code]# ls
shell.tar
[root@localhost code]# tar -czvf shell.tar.gz shell.tar
shell.tar
[root@localhost code]# ls
shell.tar shell.tar.gz
[root@localhost code]# rm -rf shell.tar
[root@localhost code]# ls
shell.tar.gz
[root@localhost code]# tar -xzvf shell.tar.gz
shell.tar
[root@localhost code]# ls
shell.tar shell.tar.gz
[root@localhost code]# rm -rf shell.tar.gz
[root@localhost code]# ls
shell.tar
[root@localhost code]# tar -xvf shell.tar
shell/
shell/sher
[root@localhost code]# ls
shell shell.tar
[root@localhost code]# rm shell.tar
rm: remove regular file `shell.tar'? y
[root@localhost code]# ls
shell
[root@localhost code]#
壓縮——解壓簡化過程
[root@localhost code]# ls
shell
[root@localhost code]# tar -czvf shell.tar.gz shell
shell/
shell/sher
[root@localhost code]# ls
shell shell.tar.gz
[root@localhost code]# rm -rf shell
[root@localhost code]# ls
shell.tar.gz
[root@localhost code]# tar -xzvf shell.tar.gz
shell/
shell/sher
[root@localhost code]# ls
shell shell.tar.gz
[root@localhost code]# rm -rf shell.tar.gz
[root@localhost code]# ls
shell
[root@localhost code]# cd shell/
[root@localhost shell]# ls
sher
解壓和壓縮是常用命令,一定要掌握
相關文章
- Linux中檔案的壓縮和解壓縮Linux
- linux壓縮和解壓縮命令整理Linux
- 檔案壓縮和解壓縮
- 【Linux基礎】壓縮和解壓Linux
- zip壓縮檔案處理方案(Zip4j壓縮和解壓)
- 『學了就忘』Linux基礎命令 — 32、壓縮和解壓縮相關命令Linux
- Linux 檔案壓縮Linux
- Linux常用命令之檔案壓縮與解壓縮命令詳解Linux
- Ubuntu 壓縮檔案命令Ubuntu
- linux下壓縮解壓縮命令Linux
- linux 下面壓縮、解壓.rar檔案Linux
- Linux下檔案的壓縮與解壓Linux
- Python實現壓縮和解壓縮Python
- linux下壓縮、解壓命令大全Linux
- linux系統壓縮,解壓檔案筆記Linux筆記
- Linux科研武器庫 - 檔案壓縮與解壓縮 - zip / unzipLinux
- .NET 壓縮/解壓檔案
- 壓縮或解壓檔案用的Linux命令?linux開發入門與實戰Linux
- Linux中Bin檔案壓縮包解壓執行Linux
- 快速上手Linux核心命令(九):檔案備份與壓縮Linux
- pigz更快的壓縮和解壓工具
- Linux下的tar壓縮解壓縮命令詳解Linux
- Linux 常用的壓縮與解壓縮命令詳解Linux
- Linux下解壓命令、壓縮命令大全,詳細教程Linux
- gulp壓縮檔案
- Linux加密壓縮檔案/資料夾Linux加密
- 電腦怎麼壓縮檔案 檔案壓縮方法詳解
- Cnetos7系統---檔案壓縮與解壓命令詳解。
- Centos7系統---檔案壓縮與解壓命令詳解。CentOS
- linux命令系列-zip(壓縮打包)Linux
- linux常用壓縮解壓複製下載命令Linux
- Linux壓縮解壓Linux
- Mac壓縮檔案怎麼加密?BetterZip加密Word壓縮檔案教程Mac加密
- 分卷壓縮怎麼解壓 快速解壓電腦分卷壓縮檔案方法
- c#壓縮檔案C#
- 檔案編輯、打包壓縮與查詢命令
- betterzip怎麼解壓檔案?如何使用BetterZip批次解壓壓縮檔案
- linux分卷壓縮解壓Linux