Loading

tar分段压缩导入

压缩

ll
drwxrwxrwx 4 postgres postgres     20480 Oct 10 14:54 gitee-repo
#分段压缩
tar czf - gitee-repo/ | split -db 200m - yum-repo-
#效果
ll -h
total 824M
drwxrwxrwx 4 postgres postgres  20K Oct 10 14:54 gitee-repo
-rw-r--r-- 1 root     root     200M Oct 10 14:57 yum-repo-00
-rw-r--r-- 1 root     root     200M Oct 10 14:57 yum-repo-01
-rw-r--r-- 1 root     root      12M Oct 10 14:57 yum-repo-02
-rw-r--r-- 1 root     root     412M Oct 10 14:55 yum-repo.tar.gz

解压

1、合并使用spilt分割的文件 
   # cat yum-repo-*  > yum-repo.tar.gz

2、解压gz文件
   # gunzip sxrt5.0.dvd1.tar.gz

3、解tar包
   # tar xvf sxrt5.0.dvd1.tar
posted @ 2022-08-01 17:37  亚里士多智  阅读(66)  评论(0编辑  收藏  举报