Zipping a folder allows you to combine multiple files into one smaller package for easy transfer.
Creating a Zip Archive
- Open your terminal.
- Type
zip -r archive_name.zip folder_to_compress/. - The
-rflag stands for recursive, ensuring everything inside the folder is included. - Press Enter to generate your Zip file.