tar 분할 압축 및 해제
tar cvf some_files.tar some_files
split -b 1000M some_files.tar "some_files.tar.part"
cat some_files.tar.parta* > some_files.tar
ref: https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/
tar cvf some_files.tar some_files
split -b 1000M some_files.tar "some_files.tar.part"
cat some_files.tar.parta* > some_files.tar
ref: https://www.tecmint.com/split-large-tar-into-multiple-files-of-certain-size/
댓글
댓글 쓰기