做自己的女王ヽ 发表于 2018-3-1 13:44:42

源码安装linux

本帖最后由 做自己的女王ヽ 于 2018-3-1 13:45 编辑

源码包的编译用到了linux系统里的编译器,常见的源码包一般都是用C语言开发的,这也是因为C语言为
linux上最标准的程序语言。Linux上的C语言编译器叫做gcc,利用它就可以把C语言变成可执行的二进制
文件。所以如果你的机器上没有安装gcc就没有办法去编译源码。你可以使用 yum install -y gcc 来完成
安装。

安装一个源码包,通常需要三个步骤:

1)./configure

在这一步可以定制功能,加上相应的选项即可,具有有什么选项可以通过 ./configure --help 命令来查看。
在这一步会自动检测你的linux系统与相关的套件是否有编译该源码包时需要的库,因为一旦缺少某个库
就不能完成编译。只有检测通过后才会生成一个Makefile文件。

2) make

使用这个命令会根据Makefile文件中预设的参数进行编译,这一步其实就是gcc在工作了。

3) make install

安装步骤,生成相关的软件存放目录和配置文件的过程。

上面介绍的3步并不是所有的源码包软件都一样的,以前也曾经遇到过,安装步骤并不是这样,也就
是说源码包的安装并非具有一定的标准安装步骤。这就需要你拿到源码包解压后,然后进入到目录找
相关的帮助文档,通常会以INSTALL或者README为文件名。所以,你一定要去看一下。下面会编译
安装一个源码包来帮你更深刻的去理解如何安装源码包。





下载一个源码包
下载源码包一定要去官方站点去下载,不要在网上随便下载,那样很不安全。因为你下载到的源码
包很有可能是被人修改过的。
# cd /usr/local/src/
# wget http://mirrors.hust.edu.cn/apache/httpd/httpd-2.2.27.tar.bz2阿铭
提供的下载地址为apache官方网站上提供的一个镜像,下载速度还可以。在下载之前,阿铭进
入到了 “/usr/local/src” 目录,这是因为阿铭习惯把源码包都放到这个目录下,这样做的好处是,
方便自己和其他管理员维护,所以阿铭给你一个建议,以后下载的源码包都统一放到这个目录下吧。

解压源码包
# tar jxvf httpd-2.2.27.tar.bz2
配置相关的选项,并生成Makefile
# cd httpd-2.2.27
# ./configure --help |less
`configure' configures this package to adapt to many kinds of systems.

Usage: ./configure ... ...

To assign environment variables (e.g., CC, CFLAGS...), specify them as
VAR=VALUE.See below for descriptions of some of the useful variables.

Defaults for the options are specified in brackets.

Configuration:
-h, --help            display this help and exit
      --help=short      display options specific to this package
      --help=recursive    display the short help of all the included packages
-V, --version         display version information and exit
-q, --quiet, --silent   do not print `checking ...' messages
      --cache-file=FILE   cache test results in FILE
-C, --config-cache      alias for `--cache-file=config.cache'
-n, --no-create         do not create output files
      --srcdir=DIR      find the sources in DIR
后面的内容阿铭省略掉了,阿铭使用 ./configure --help 命令查看可以使用的选项。一般常用的有 --prefi
x=PREFIX 这个选项的意思是定义软件包安装到哪里。到这里,阿铭再提一个小小的建议,通常源码包
都是安装在/usr/local/目录下的。比如,我们把apache安装在/usr/local/apache2下,那么这里就应该这样
写 --prefix=/usr/local/apache2 其他还有好多选项,如果你有耐心可以挨个去看一看都有什么作用。

# ./configure --prefix=/usr/local/apache2
checking for chosen layout... Apache
checking for working mkdir -p... yes
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu

Configuring Apache Portable Runtime library ...

checking for APR... reconfig
configuring package in srclib/apr now
checking build system type... i686-pc-linux-gnu
checking host system type... i686-pc-linux-gnu
checking target system type... i686-pc-linux-gnu
Configuring APR library
Platform: i686-pc-linux-gnu
checking for working mkdir -p... yes
APR Version: 1.4.6
checking for chosen layout... apr
checking for gcc... no
checking for cc... no
checking for cl.exe... no
configure: error: in `/usr/local/src/httpd-2.2.27/srclib/apr':
configure: error: no acceptable C compiler found in $PATH
See `config.log' for more details
configure failed for srclib/apr
不幸的是,阿铭一开始就报错了,因为没有gcc编译器,需要先安装一下。

# yum install -y gcc
由于gcc依赖的包很多,所以安装时间会长一些。安装完后,再继续上面的步骤。

tcode:

# ./configure --prefix=/usr/local/apache2
验证这一步是否成功的命令是:

# echo $?
0
返回值如果是 “0” 则执行成功,否则就是没有成功。此时就成功生成 Makefile 了。

# ls -l Makefile
-rw-r--r-- 1 root root 8954 5月13 12:02 Makefile
进行编译
# make
-bash: make: command not found
又发生错误了,提示 “make” 命令没有发现,解决办法是安装make工具。

# yum install -y make
继续make

# make
Making all in srclib
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib'
Making all in apr
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib/apr'
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib/apr'
/bin/sh /usr/local/src/httpd-2.2.27/srclib/apr/libtool --silent --mode=compile gcc -g -O2 -pthread   -DHAVE_CONFIG_H -DLINUX=2 -D_REENTRANT -D_GNU_SOURCE -D_LARGEFILE64_SOURCE   -I./include -I/usr/local/src/httpd-2.2.27/srclib/apr/include/arch/unix -I./include/arch/unix -I/usr/local/src/httpd-2.2.27/srclib/apr/include/arch/unix -I/usr/local/src/httpd-2.2.27/srclib/apr/include-o passwd/apr_getpass.lo -c passwd/apr_getpass.c && touch passwd/apr_getpass.lo
编译的时候,就会出现类似这么多乱七八糟的信息,编译的时间比较长,CPU使用率会很高,这是因为
CPU高速计算,编译完后,再使用 echo $? 验证一下是否正常成功。

# echo $?
0
如果是0的话,就可以执行最后一步了。

安装
# make install
Making install in srclib
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib'
Making install in apr
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib/apr'
make: Entering directory `/usr/local/src/httpd-2.2.27/srclib/apr'
make: Nothing to be done for `local-all'.
make: Leaving directory `/usr/local/src/httpd-2.2.27/srclib/apr'当然你也可以使用 echo $? 看
看有没有正确安装,执行完这一步,则会在 “/usr/local/apache2” 目录
下增加了很多目录。
# ls /usr/local/apache2/
bin    cgi-binerror   icons    lib   man   modules
buildconf   htdocsincludelogsmanual到此,apache源码的安装就完成了,其实在日常的源码
安装工作中,并不是谁都像阿铭这样顺利完
成安装的,遇到错误不能完成安装的情况是很多的。通常都是因为缺少某一个库文件导致的。这就
需要你仔细琢磨报错信息或者查看当前目录下的 “config.log” 去得到相关的信息。另外,如果自己
不能解决那就去网上google一下吧,通常你会得到想要的答案。

页: [1]
查看完整版本: 源码安装linux