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
- linux壓縮和解壓縮命令大全Linux
- linux下的檔案的壓縮和解壓縮Linux
- Linux tar壓縮和解壓縮等命令Linux
- linux壓縮和解壓命令總結Linux
- 常用的壓縮和解壓命令案例
- pclzip壓縮檔案和解壓的多種示例
- C# 壓縮和解壓檔案(SharpZipLib)C#
- zip壓縮檔案處理方案(Zip4j壓縮和解壓)
- 【Linux基礎】壓縮和解壓Linux
- JAVA壓縮和解壓縮Java
- zip壓縮和解壓縮
- Ubuntu 壓縮檔案命令Ubuntu
- 『學了就忘』Linux基礎命令 — 32、壓縮和解壓縮相關命令Linux
- 字串的壓縮和解壓縮字串
- Linux常用命令之檔案壓縮與解壓縮命令詳解Linux
- Linux 檔案壓縮Linux
- linux 壓縮檔案的命令總結Linux
- linux下壓縮解壓縮命令Linux
- Linux壓縮及解壓縮命令Linux
- linux 下面壓縮、解壓.rar檔案Linux
- linux的tar命令詳情;linux多個檔案壓縮打包到一個壓縮檔案Linux
- 簡單的zip壓縮和解壓縮
- Python實現壓縮和解壓縮Python
- 檔案的壓縮與解壓縮zz--linuxLinux
- linux 壓縮分解檔案Linux
- Linux 檔案的壓縮Linux
- Linux下檔案的壓縮與解壓Linux
- .NET 壓縮/解壓檔案
- linux壓縮命令Linux
- Linux中檔案的壓縮與解壓縮(轉貼)Linux
- linux壓縮(解壓縮)命令詳解-轉Linux
- Linux下*.tar.gz檔案解壓縮命令Linux
- linux下壓縮、解壓命令大全Linux
- aix 檔案的壓縮與解壓縮AI