1. Package management of the compilation of installation compilation of installation steps get the source code and unzip tar xvf package_version.tar. {GZ|BZ2|XZ}, expanded after directory name is usually package_version switch to the source directory cd package_ version Execute Configure script ./ configure (autoconf : configure script Check whether the compilation environment satisfies the compilation needs define which feature or feature is enabled at the time of the current program compilation, and the definition of the installation path, etc., &nbSP; results: Makefile files are generated according to the makefile.in file compiling make (automake: makefile.in file, used in conjunction with configure script generation makefile file, makefile file is the config file for make command) installation make install Generic configuration of Configure scripts (cannot program their configure scripting features, get help ./configure --help ) designationInstallation path --prefix=/usr/local/package_name --sysconfdir=/etc/package_name Specify enable disable features --enable-feature such as:--enable-fpm --disable-feature Example:--enable-soket Specify the features, programs, or files that you rely on -- with-function Enable a feature -- without-function Disabling a feature
Linux Fundamentals 23