Delete
Setting
Add New Item
Menu List
Title | Content Type | Order | Action | ||||||
---|---|---|---|---|---|---|---|---|---|
{{kb_content.name}} {{kb_content.name}} | {{setValue(content_types, kb_content.content_type)}} | {{kb_content.sort_order}} | Preview Edit Edit Content | ||||||
{{kb_content.name}} | {{setValue(content_types, kb_content.content_type)}} | {{kb_content.sort_order}} | Preview Edit Edit Content | ||||||
No record |
Install the Zip and Unzip Utility in Ubuntu
You are new to Linux and switch to the Linux Operating System, this is a tutorial for you. This will help you to start your journey in the Linux system because when you perform daily operations in this system, you will not stack on it.
After installing the OS, we need some basic applications to do our daily operation such as browser, zoom, skype. If we are a developer then we need some development tools like Node.Js and NPM, PHP, phpMyAdmin, MySQL, Apache, Tomcat, DBreaver etc. This tutorial will cover all of this.
Important thing is when you enable the installation of those applications, you will learn many things regarding Linux OS.
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
.....