Ask:linux through the source code to compile the installation program (Configure/make/make install role)
Configure
The Linux platform has various configurations, which need to be determined by configure, such as: CC or GCC, directory of different libraries, etc. After executing the Configure, Makefile,makefile will be generated to specify what compiler, compile parameters and other information.
Make
Compile according to the content specified in Makefile, and the resulting executable file is placed in the current directory or in a subdirectory.
Make install
Installing the make generated files into the system directory, such as/usr/bin, requires root access, so it is often necessary to install with sudo make. If you do not have this step, you cannot start the program by entering the name of the program on the command line.
Compile the installer from the source under Linux