歸檔打包
[root@centos7 root2018-07-31]#tar -cpvf data.tar /data/
tar: removing leading `/' from member names
/data/
/data/root2018-07-26/
[root@centos7 root2018-07-31]#tar -xf data.tar
[root@centos7 root2018-07-31]#ll
total 1064
drwxr-xrwx. 13 root root 268 jul 31 15:45 data
分割大的 tar 檔案為多份小檔案
合併
打包壓縮
解包解壓縮
xz [option]… file …
bzip2 [option]… file …
gzip [option]… file …cate /etc/passwd | gzip > log.gz
預設壓縮且刪除原始檔
[root@centos7 root2018-07-31]#compress mes
[root@centos7 root2018-07-31]#ll
total 136
-rw-------. 1 root root 105512 jul 31 17:43 messages
-rw-------. 1 root root 29690 jul 31 17:45 mes.z
[root@centos7 root2018-07-31]#compress -d mes.z
[root@centos7 root2018-07-31]#ll
total 208
-rw-------. 1 root root 105512 jul 31 17:45 mes
-rw-------. 1 root root 105512 jul 31 17:43 messages
[root@centos7 root2018-07-31]#
[root@centos7 root2018-07-31]#uncompress mes.z
[root@centos7 root2018-07-31]#ll
total 312
-rw-r--r--. 1 root root 105512 jul 31 17:49 m1
-rw-------. 1 root root 105512 jul 31 17:45 mes
解壓縮,不刪除原始檔,輸出至螢幕,不儲存,需要重定向
[root@centos7 root2018-07-31]#zcat mes.z > m1
[root@centos7 root2018-07-31]#ls
m1 messages mes.z
檔案壓縮 解壓縮 歸檔以及鏈結
gdt group description table 塊組描述表 tune2fs l 顯示超級塊資訊 dumpe2fs 輸出 ext檔案系統資訊 du disk usage s summary,顯示某指定路徑下所有檔案的大小之和 h human readale 換成容易 讀的單位 df disk ...
檔案的壓縮解壓與歸檔
windows下的常見壓縮格式有.zip和.rar,而linux下的常見壓縮格式有 gz,bzip2,xz,zip等由於壓縮演算法的不同,所以以上幾個壓縮後的檔案大小各不同。用法 gzip 檔案路徑gzip壓縮與解壓完成後會刪除原始檔。壓縮檔案 解壓檔案 不解壓檔案檢視原始檔用法 bzip2 檔案路...
檔案歸檔和壓縮
歸檔 archive 和壓縮 1 為什麼需要壓縮 讓檔案占用更少的磁碟空間 減少網路頻寬的占用,提高頻寬使用率 2 壓縮實現方式 霍夫曼 1 0000 0001 11111110001 1 70001 3 linux常見的壓縮工具 工具 gzip bzip2 gz bz2 tar.gz tar.bz...