What is a Tarball file? it refers to packaging all the software source code with tar and compressing it. It usually contains the following file list: 1) source code file 2) detection program File (configure or config, etc.) 3) simple description and installation instructions (INSTALL or README) Tar
What is Tarball?
The so-called Tarball file is to package all the software source code in tar and then compress it. It usually contains the following file list: 1) source code file 2) detection program File (configure or config, etc.) 3) simple description and installation instructions (INSTALL or README)
Steps for installing Tarball
The command for installing Tarball is executed as follows: 1. /congifure: As mentioned above, the Tarball file contains the configure detection program, which is used to detect the user's operating environment. execute configure to generate MakeFile, this file records the details of how to compile the source code. 2. makeclean (optional) read the clean work in Makefile. This step may not always exist, but we recommend that you perform the following. 3. when make is executed, make searches for the MakeFile text file in the current directory and compiles the source code into an executable file.
4. make install the software according to the install option in Makefile.