亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

linux文件打包與壓縮的方法是什么

發布時間:2022-10-19 15:50:34 來源:億速云 閱讀:184 作者:iii 欄目:建站服務器

本篇內容主要講解“linux文件打包與壓縮的方法是什么”,感興趣的朋友不妨來看看。本文介紹的方法操作簡單快捷,實用性強。下面就讓小編來帶大家學習“linux文件打包與壓縮的方法是什么”吧!

打包和壓縮

將文件或文件夾合并成一個包,然后通過壓縮算法進行數據壓縮,減小包的體積,方便網絡傳輸。

windows:
  zip
  rar

linux:
  zip
  tar
  gz
  bz2
  tar.gz
  tar.bz2

壓縮算法:
  gzip
  bzip2

zip

是一個Windows和Linux中常用打包壓縮工具,支持的壓縮算法是zip。

zip工具需要安裝
  yum install zip

zip壓縮一個文件

# 格式
  zip [參數] 壓縮包名稱  文件路徑

[root@abc ~]# zip 123.zip 123.log 
  adding: 123.log (deflated 87%)
[root@abc ~]# ls -l

zip壓縮文件夾

# 需要一個-r參數去遞歸壓縮文件夾下的所有內容
[root@abc ~]# zip -r dir.zip dir/
  adding: dir/ (stored 0%)
  adding: dir/one/ (stored 0%)
  adding: dir/123.log (deflated 87%)

zip的靜默輸出

# -q:參數就是不輸出任何打包信息
[root@abc opt]# zip -r -q etc.zip /etc/
[root@abc opt]# ls -l

zip解壓命令(unzip)

# 格式
  unzip [參數] 壓縮包路徑

# unzip解壓命令只能解壓由zip打包的壓縮文件
[root@abc ~]# unzip dir.zip 
Archive:  dir.zip
  inflating: dir/123.log             
[root@abc ~]# 

# 其他壓縮包由unzip解壓時隨即報錯。
[root@abc opt]# unzip nginx-.tar.gz
Archive:  nginx-.tar.gz
  End-of-central-directory signature not found.  Either this file is not
  a zipfile, or it constitutes one disk of a multi-part archive.  In the
  latter case the central directory and zipfile comment will be found on
  the last disk(s) of this archive.
unzip:  cannot find zipfile directory in one of nginx-.tar.gz or
        nginx-.tar.gz.zip, and cannot find nginx-.tar.gz.ZIP, period.


# 查看壓縮包中壓縮那些內容,不解壓?
# 只查看壓縮包內容不解壓需要使用 -l 參數
[root@abc opt]# unzip -l dir.zip 
Archive:  dir.zip
  Length      Date    Time    Name
---------  ---------- -----   ----
        0  03-11-2021 12:04   dir/
---------                     -------
        0                     1 file

# 解壓到指定目錄(-d)
[root@abc ~]# unzip -d /root/  etc.zip 
[root@abc opt]# cd /root/
[root@abc ~]# ls
]        anaconda-ks.cfg  dir.zip  index.html           test.pdf.gz  xxxeth0xxx           系統優化.md
123.log  demo.txt         etc      nginx-0.1.22.tar.gz  test.txt     上傳與下載.md
123.zip  dir              eth0xxx  test                 xxxeth0      文件管理_(高級).pdf

# 靜默輸出(-q)
[root@abc ~]# rm -rf etc
[root@abc ~]# unzip -q -d /root/ /opt/etc.zip 
[root@abc ~]# ls -l

tar

tar壓縮支持多種壓縮算法

tar.gz gzip (用的最多)

tar.bz2 bzip2

gzip

通過gzip壓縮算法,將文件壓縮一定體積,有利于傳輸, 不支持打包

[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 root root  244977 Mar 10 12:12 index.html
[root@abc ~]# gzip index.html 
[root@abc ~]# ls -l
gzip壓縮一個目錄
[root@abc etc]# gzip -r /etc
[root@abc etc]# ls

gzip解壓(-d)

[root@abc ~]# ls -l
-rw-r--r--   1 0 0   22652 Mar 10 12:12 index.html.gz
[root@abc ~]# gzip -d index.html.gz 
[root@abc ~]# ls -l

bzip2

使用bzip2 壓縮算法來壓縮一定體積的文件。

[root@abc ~]# ls -l
total 4828
-rw-r--r--   1 root root  646165 Mar  9 10:31 123.log     
[root@abc ~]# bzip2 123.log 
[root@abc ~]# ls -l
total 4240
-rw-r--r--   1 root root       0 Mar 10 12:04 ]

bzip2解壓(-d)

bzip2解壓是針對于bzip2壓縮的壓縮包來進行解壓。

[root@abc ~]# ls -l
total 4240
-rw-r--r--   1 root root   42210 Mar  9 10:31 123.log.bz2
[root@abc ~]# bzip2 -d 123.log.bz2 
[root@abc ~]# ls -l

tar

tar其實是一個打包工具,不具備壓縮功能,但是可以使用參數調用壓縮工具來進行解壓。

tar參數
  -c : 創建壓縮
  -f ; 指定壓縮包名稱
  -z : 使用gzip壓縮工具進行壓縮
  -j : 使用bzip2壓縮工具進行壓縮
  -J : 使用xz壓縮工具進行壓縮
  -t : 顯示壓縮包內容,不解壓
  -v : 顯示壓縮過程
  -P : 允許使用絕對路徑進行壓縮
  -x : 解壓
  -C : 指定解壓路徑
  -h : 打包軟連接
  --exclude : 排除某些文件
  --exclude-from :
參數
  • -c : 創建壓縮包

  • -f : 指定壓縮包名稱

[root@abc ~]# tar -c -f test.tar 123.log 
[root@abc ~]# ls -l
  • -z : 指定使用gzip壓縮工具進行壓縮

[root@abc ~]# tar  -c -z -f test-one.tar 123.log 
[root@abc ~]# ls -l 
total 5084
-rw-r--r--   1 root root   85279 Mar 11 15:56 test-one.tar

# 注:使用-z參數,不會自動添加.gz后綴

[root@abc ~]# tar -c -z -f anaconda.tar.gz  anaconda-ks.cfg 
[root@abc ~]# ls -l
  • -j : 指定使用bzip2壓縮工具進行壓縮

[root@abc ~]# tar -c -j -f 123-bask-one.tar 123.log 
[root@abc ~]# ls -l
  • -J : 指定使用xz壓縮工具進行壓縮

[root@abc test-tar]# tar -c -J  -f etc.tar.xz /etc/
[root@abc ~]# ls -l
  • -t : 查看壓縮包內容

[root@abc ~]# tar -t -f 123-bak.tar.bz2 
123.log
[root@abc ~]#
  • -v : 顯示壓縮包壓縮過程

[root@abc ~]# tar -x -v -f etc.tar -C /opt/
  • -P : 允許使用絕對路徑進行打包

[root@abc ~]# tar -c -P -f 123-three.tar /etc/passwd
[root@abc ~]# tar -c -f 123-three.tar /etc/passwd
tar: Removing leading `/' from member names
[root@abc ~]#
  • -x : 解壓

# tar解壓是按照原來的路徑進行解壓
[root@abc test]# tar -x -f etc.tar 

# tar會自動識別壓縮功能
  • -C : 指定解壓路徑

[root@abc ~]# tar -x -f etc.tar -C /opt/
tar: Removing leading `/' from member names
[root@abc ~]# cd /opt/
[root@abc opt]# ls
abc23  dir  dir.zip  etc  nginx-0.1.22.tar.gz  nginx-.tar.gz  xxx
[root@abc opt]#
  • –exclude : 排除某些文件

[root@abc test-tar]# tar -c -f abc.tar ./* --exclude=abc7 --exclude=abc5   --exclude=abc1 
[root@abc test-tar]# tar -t -f abc.tar 
./abc2
./abc3
./abc4
./abc6
./abc8
./abc9
[root@abc test-tar]#
  • –exclude-from : 根據某個文件列表排除多個文件

[root@abc test-tar]# cat list.txt 
abc995
abc996
abc997
abc998
abc999
[root@abc test-tar]# tar -c -f abc.tar ./* --exclude-from=list.txt
  • -h : 打包軟連接

[root@abc test-tar]# tar -c -h -f bin-h.tar /bin

到此,相信大家對“linux文件打包與壓縮的方法是什么”有了更深的了解,不妨來實際操作一番吧!這里是億速云網站,更多相關內容可以進入相關頻道進行查詢,關注我們,繼續學習!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

弥渡县| 凉城县| 冀州市| 微山县| 赣州市| 通山县| 全州县| 青浦区| 闻喜县| 北京市| 鹤庆县| 海伦市| 玉林市| 浮山县| 景谷| 马山县| 根河市| 云梦县| 长寿区| 闽清县| 宜兰县| 抚远县| 宁都县| 阳东县| 六盘水市| 吴桥县| 海兴县| 兴化市| 社旗县| 平阴县| 株洲市| 贵阳市| 新安县| 万盛区| 鸡东县| 北票市| 凭祥市| 太和县| 萨嘎县| 信阳市| 晴隆县|