So you’ve downloaded an installer file, either by browsing the Internet or through a friend, and now you want to install it. If you’re using Linux, this is pretty easy! This guide will show you how to install zip file in Linux step by step.
How to Install Zip File in Linux
Linux allows you to install software from source code by installing zip files. When you install software from the source code, you need to install zip files. Installing a zip file in Linux is explained here.
1. Navigate to Folder with Zip File
The zip file program.zip can be found in the /home/ubuntu folder. Open a terminal and navigate to this location with the CD command.
$ cd /home/ubuntu $ ls $ program.zip
2. Unzip Zip File
To extract a compressed zip file on your Linux system, enter the following command
$ unzip program.zip
First, create a new folder called program inside the directory you’re currently in and extract all files & folders from program.zip inside that folder. Navigate to that folder and type LS to see the content inside it.
$ cd program
$ ls
3. View the Readme file
Most zip files come with README files that contain step-by-step installation instructions, so use the ls command and more README to view it. In case these files are not present, continue with the default installation steps.
4. Pre-Installation Configuration
If you are in /home/ubuntu/program when you run this command, make sure you are in the unzipped folder (e.g. /home/ubuntu/program).
$ ./configure
You can only proceed with compilation after Linux checks if all dependencies and prerequisites are satisfied. After Linux creates a makefile file, you can begin converting files.
5. Compilation
Run the make command from the unzipped folder to compile the source code.
$ make
By running makefile, the instructions in the file will be followed.
6. Installation
Finally, we have completed the installation using the make install command. However, you will have to switch to the root user and enter su to get things working. You will be required to input a root password while you do this.
$ su
Password:
$ make install
When the installation is complete, you will mostly see the location where your program/software will be installed. Enter ‘Y’ during installation if you see any prompts.
Conclusion
In this article, we explain how to Install Zip File in Kali Linux, which can be done by following these instructions: The first step, go to the directory where you found the zipped file and uncompress it. Unzip the Zip File. 3. To view the readme file, go to Step 4. Pre-Installation configuration. Item five. The compilation, 6. Installation instructions
beginner for Ethical hacker: If you are interested in hacking then you can visit the website hacking4u.com to check hacking tools and information. And here you will find all kinds of information.
[su_button id=”download” url=”https://hacking4u.com/how-to-control-your-wifi-speed-in-linux/” background=”#ef2d2e” size=”5″ center=”yes” radius=”round” icon=”icon: clock-o”]Click Now[/su_button]
[…] Zip file […]
[…] Zip file […]