2007
08.06

Making compressed archive from a folder:

tar -czvf destination.tar.gz source_folder/

Use split to slice the file. Slice size can be defined with -b option:

split -b 1100m destination.tar.gz destination_

To join parts use cat:

cat destination_a* > destination.tar.gz

To extract the compressed file:

tar -zxvf destination.tar.gz

Comments are closed.