Packing with tar gzip, bzip2 and zip
Looking back through my block i found my post about extracting archives. Now it’s time to continue here with the How to put files into archives. “tar.gz” with tar Here is some common way to create your archives. #Creates simple targetfile.tar without compression. Will include everything in the current dir "." tar cvf targetfile.tar ./* #Zip everything beneath current dir to targetfile.tar.gz tar cvzf targetfile.tar.gz ./* #Bzip2 everything beneath current dir to targetfile....