1.prefix - 指定文件安装路径通常与configure搭配使用:
在安装源码时可使用下述命令指定源码安装路径:
bogon:httpd-2.4.59 wancanchishenma$./configure --prefix=/usr/local/apache
2.源码的安装一般由3个步骤组成:配置(configure)、编译(make)、安装( make install ).
1>下载源码后进入该文件夹内:
bogon:local wancanchishenma$ cd httpd-2.4.59/
2>使用./configure对源码包进行配置:
bogon:httpd-2.4.59 wancanchishenma$./configure --prefix=/usr/local/
3>进行编译与安转,可分别执行make与make install:
bogon:httpd-2.4.59 wancanchishenma$ make&&make install
a.执行这步时可能会报权限问题无法安装:Permission denied,可以手动创建文件夹。
b.或者单独执行make时可能会报错:Make: Nothing to be done for 'all'.这时可以执行make clean 清除安装时留下的文件。