Tar An Entire Directory
tar cvf name_of_archive.tar dirname/
Gzipping the File as well:
tar cvf test.tar ./test && gzip -9 test.tar
Makes multiple smaller files:
split -b 500M test.tar “test.tar.part”
tar cvf name_of_archive.tar dirname/
Gzipping the File as well:
tar cvf test.tar ./test && gzip -9 test.tar
Makes multiple smaller files:
split -b 500M test.tar “test.tar.part”