Your cart
  • IMG
    {{cart_item.name}}
    {{cart_item.variation_attribute_name}}: {{cart_item.variation_attribute_label}}
    {{cart_item.item_unit}}: {{ setCurrency(cart_item.price)}}
    {{ setCurrency(cart_item.price*cart_item.quantity)}}
    Invalid quantity more than stock
Total :
{{setCurrency(cart.sub_total)}}

There is no item in the cart. If you want to buy, Please click here.

Install the Zip and Unzip Utility in Ubuntu

Complete guide to start Linux OS and install essential applications in Linux

Created by :
Linux
tutorial
Programming, Software and application
1408
2022-01-09 18:30:29

ZIP is an archive file format that supports lossless data compression. In Ubuntu Linux, zip and unzip are utility tools we need to install in the system if not installed zip unzip utility. 

Install zip Utility: 

For zip utility in ubuntu, run following command:

sudo apt-get install zip

Installed unzip utility

For unzip utility in ubuntu, run following command:

sudo apt-get install unzip

Use Of ZIP utility: 

go to directory which you want to compress. or you can get help from utility itself by typing zip --help

zip -r fileName *

Use of unzip or Uncompress file(s) into .zip file

uncompressing or extracting of .zip file in your Linux based Ubuntu system is as:

 sudo unzip source_file_path/source_file.zip -d destination_path

 .....