본문 바로가기
OS-OE Knowledge/Linux-Unix KB

Linux/tar 사용법

by 스쳐가는인연 2021. 2. 4.

tar 분할 압축 해제

 

Syntax: tar cvf(z) - 대상디렉토리or파일 | split -b 용량 - 분할압축파일명

# tar cvf - /tmp | split -b 3000m - ahs_dump.tar

ahs_dump.taraa
ahs_dump.tarab
ahs_dump.tarac
ahs_dump.tarad

 

# cat ahs_dump.tar* | tar zxvf -

출처: https://frody.tistory.com/5

반응형