Tar command usage
Create the tar file
tar -czvp -f archive.tar.gz foo bar
Create archive.tar.gz from files foo and bar with the preserved permission
tar -cjvp -f archive.tar.bz2 foo bar
How to split the file:
split -b 4000k archive.tar.gz archive.20120829.tar.gz. -verbose
creating