I have a directory that need to backup, its size is about 150GB consist of multiple files and directories. I try to compress it become a single archive file using these commands:
tar cjf this_archive.tar.bz2 this_archive/
or
tar cf - this_archive/ | 7z a -si -t7z -m0=lzma -mx=9 -mfb=64 -md=32m -ms=on this_archive.tar.7z
both commands always take a long time to process compressing the directory, even if it can finish the process, the output file archive always corrupt/error.
I want to know if there's any efficient compressing method/technique for large size directory that capable to do archiving directory like in my case?