Ubuntu – do not compress just zip files in command line

tarzip

I have a bunch of photos, around 2 GB size to be precise. I need to download these images but I have to zip it first.

Using zip command to compress the image files takes so much time to complete. I want to only zip those images in command line without compression. Is this possible?

Best Answer

This is what tarball archives are for.

tar -c -f archive.tar file directory/

This creates an uncompressed archive.