How to Create Zip File in Ubuntu using Command

Websolutionstuff | Jan-24-2024 | Categories : Other

Hey folks! If you're anything like me, sometimes you just want a quick and straightforward way to bundle up a bunch of files or folders into a neat little package. Well, good news – creating a zip file in Ubuntu using the command line is easier than you might think!

In this guide, I'll walk you through the steps, and trust me, it's as simple as typing a few commands into your terminal.

So, let's see how to create a zip file in Ubuntu using a command line, how to make a zip file in Ubuntu command line, ubuntu unzip command, zip command in Linux, and Linux zip command.

Create a step-by-step guide on creating a zip file in Ubuntu using the command line.

Method 1: Zip Folder Ubuntu Linux

Create a file using the following command.

zip -r zip_name.zip folder

Example:

zip -r laravel.zip Laravel

 

Method 2: Create Zip Multiple Folders at Once Linux Ubuntu

Create multiple zip files using a single Ubuntu command.

zip -r test.zip folder1 folder2 folder3

Example:

zip -r test.zip testFolder1 testFolder2 testFolder3

 

Method 3: Password Protected Folder Linux Ubuntu

Create password protected zip file using command line.

zip -e  test.zip folder

The command will be prompted to enter and verify the archive password:

Enter password:
Verify password:

Example:

zip -r -e test.zip TestFolder

 

Method 4: Create a zip all files and folders

if you want to zip all files and folders in the current directory, you can use.

zip -r myarchive.zip *

 

Verify the Zip File

To verify that the zip file was created successfully, you can use the unzip command to extract its contents:

unzip myarchive.zip

That's it! You've successfully created a zip file in Ubuntu using the command line. You can now share or move your zip file as needed.

 

Conclusion

Creating a zip file via the terminal is a quick and efficient way to compress your files and folders.

 


You might also like:

Recommended Post
Featured Post
Drag and Drop File Upload Using Dropzone js in Laravel 8
Drag and Drop File Upload Usin...

This article will show drag and drop file upload using dropzone js in laravel 8. DropzoneJS is an open-source library th...

Read More

Oct-20-2020

How To Create Validation Rule In Laravel 10
How To Create Validation Rule...

In this article, we will see how to create a validation rule in laravel 10. Here, we will learn about the laravel 1...

Read More

May-22-2023

How to Install Composer on Ubuntu 22.04
How to Install Composer on Ubu...

Hey there! If you're diving into the world of PHP development on your Ubuntu 22.04 machine, you'll likely come a...

Read More

Jan-10-2024

Laravel 9 Inner Join Query Example
Laravel 9 Inner Join Query Exa...

In this article, we will see laravel 9 inner join query example. Also, see how to join two tables in laravel 9. In larav...

Read More

Mar-30-2022