`
sunchaohui_koko
  • 浏览: 59053 次
  • 性别: Icon_minigender_1
  • 来自: 苏州
社区版块
存档分类
最新评论

安装PHP

    博客分类:
  • java
阅读更多

yum install g++

yum install gcc

yum install make

 

安装python 开发组件

yum install python

yum install python-dev

 

 

 

安装make

yum install make

 

make: *** No targets specified and no makefile found. Stop.解决方法
2009-11-04 16:57

 

1、wget http://ftp.gnu.org/pub/gnu/ncurses/ncurses-5.6.tar.gz

2.、tar zxvf ncurses-5.6.tar.gz

3、 ./configure -prefix=/usr/local -with-shared -without-debug

4、make

5、make install

 

 

 

 yum install  libjpeg-devel freetype-devel libpng-devel 

 

 ./configure --prefix=/usr/local/gd --with-png=/usr/local/libpng --with-freetype=/usr/local/freetype --with-jpeg=/usr/local/jpeg

 

 

1、检查freetype是否安装
rpm -qa | grep freetype
没有的话编译freetype
这里下载
./configure --prefix=/usr/local/freetype
make && make install 即可,没有花头
2、检查libjpeg是否安装
rpm -qa | grep libjpeg
没有的话编译libjpeg
这里下载
我也没装libjpeg,下载好开始编译
jpegsrc.v6b.tar.gz
tar -xzvf jpegsrc.v6b.tar.gz
cd jpeg-6b/
./configure --prefix=/usr/local/jpeg --enable-shared
make && make install
最后一步make install 出错:
/usr/bin/install -c -m 644 jconfig.h /usr/local/jpeg/include/jconfig.h
/usr/bin/install: cannot create regular file `/usr/local/jpeg/include/jconfig.h': No such file or directory
make: *** [install-headers] Error 1
/usr/bin/install: cannot create regular file `/usr/local/jpeg/lib/libjpeg.so.62.0.0': No such file or directory
/usr/bin/install: cannot create regular file `/usr/local/jpeg/bin/cjpeg': No such file or directory
make: *** [install-lib] Error 1
难道安装程序自己新建一下目录都不行??晕,我自己去新建目录
mkdir -p /usr/local/jpeg/include
mkdir -p /usr/local/jpeg/lib
mkdir -p /usr/local/jpeg/bin
mkdir -p /usr/local/jpeg/man/man1
OK再编译就成功了
3、检查是否安装了libpng
rpm -qa libpng
没有的话编译libpng
这里下载
./configure --prefix=/usr/local/png
make && make install
4、安装GD库
这里下载
tar -zxvf gd-2.0.35.tar.gz
cd gd-2.0.35
./configure --prefix=/usr/local/gd2
5、编译PHP
这里下载
tar -zxvf php-5.2.5.tar.gz
cd php-5.2.5
./configure --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql --with-zlib --with-jpeg-dir=/usr/local/jpeg --with-png-dir=/usr/local/png --with-freetype-dir=/usr/local/freetype --enable-ftp --enable-sockets --with-gd=/usr/local/gd2 --enable-gd-native-ttf --with-ttf --enable-magic-quotes --with-iconv -enable-mbstring=all
OK 全部完成
PS:如果安装有报错:
configure.ac:64: error: possibly undefined macro: AM_ICONV
    If this token and others are legitimate, please use m4_pattern_allow.
    See the Autoconf documentation.
make: *** [configure] Error 1
需要安装gettext
这里下载

<script type="text/javascript"></script>

 

 

 

configure: error: Unable to find libgd.(a|so)

如果使用的是ubuntu或debian就很简单了,直接sudo apt-get install apache2 libapache2-mod-php5 php5 php5-gd 就基本上搞定,但是用源代码安装还是很麻烦~

wget http://www.boutell.com/gd/http/gd-2.0.11.tar.gz
tar zxvf gd-2.0.11.tar.gz
cd gd-2.0.11
sudo ./configure --prefix=/usr/local/gd2
sudo make
sudo make install

再php:~/:./configure  …… --with-gd=/usr/local/gd2  ……


以下是转载的,而且都是基于yum install或者apt-get的。

1) Configure: error: xml2-config not found. Please check your libxml2 installation.

Solutions :

Quote:
#yum install libxml2 libxml2-devel (For Redhat & Fedora)

# aptitude install libxml2-dev      (For ubuntu)

2) Checking for pkg-config… /usr/bin/pkg-config
configure: error: Cannot find OpenSSL’s <evp.h>

Solutions :

Quote:
#yum install openssl openssl-devel

3) Configure: error: Please reinstall the BZip2 distribution

Solutions :

Quote:
yum install bzip2 bzip2-devel

4) Configure: error: Please reinstall the libcurl distribution -
easy.h should be in <curl-dir>/include/curl/

Solutions :

Quote:
yum install curl curl-devel   (For Redhat & Fedora)

# install libcurl4-gnutls-dev    (For Ubuntu)

5) Configure: error: libjpeg.(also) not found.

Solutions :

Quote:
yum install libjpeg libjpeg-devel

6) Configure: error: libpng.(also) not found.

Solutions :

Quote:
yum install libpng libpng-devel

7) Configure: error: freetype.h not found.
Solutions :

Quote:
#yum install freetype-devel

8) Configure: error: Unable to locate gmp.h

Solutions :

Quote:
yum install gmp-devel

9) Configure: error: Cannot find MySQL header files under /usr.
Note that the MySQL client library is not bundled anymore!

Solutions :

Quote:
yum install mysql-devel            (For Redhat & Fedora)

# apt-get install libmysql++-dev      (For Ubuntu)

10) Configure: error: Please reinstall the ncurses distribution

Solutions :

Quote:
yum install ncurses ncurses-devel

11) Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!

Solutions :

Quote:
yum install unixODBC-devel

12) Configure: error: Cannot find pspell

Solutions :

Quote:
yum install pspell-devel

13) configure: error: mcrypt.h not found. Please reinstall libmcrypt.

Solutions :

Quote:
yum install libmcrypt libmcrypt-devel    (For Redhat & Fedora)

# apt-get install libmcrypt-dev

14) Configure: error: snmp.h not found. Check your SNMP installation.

Solutions :

Quote:

yum install net-snmp net-snmp-devel


以下是我自己出现的问题
http://www.linuxquestions.org/questions/linux-server-73/error-compiling-php-usrbinld-cannot-find-lltdl-656764/

  • Problem:Error compiling PHP: /usr/bin/ld: cannot find -lltdl


              solution: yum install libtool-ltdl-devel

分享到:
评论

相关推荐

    ubuntu20.04 离线安装PHP7.4

    在Ubuntu 20.04系统中离线安装PHP 7.4可能是因为网络环境受限或者需要特定版本的PHP,这种情况下,我们需要手动下载所需的PHP 7.4源码包及其依赖,然后进行编译安装。以下是详细步骤: 1. **获取PHP 7.4源码包** ...

    安装php 的bcmath扩展

    安装 PHP 的 bcmath 扩展 在 PHP 开发中,bcmath 扩展是一个非常重要的组件,它用于进行小数点精度计算。如果没有安装该扩展,则可能会导致一些问题,例如在校园超市商城小程序购物车里面商品的价格显示不正确。...

    centos7.9离线安装PHP环境依赖

    在Linux系统中,尤其是CentOS 7.9这样的企业级操作系统上,离线安装PHP环境依赖是一项关键任务,尤其在没有互联网连接或者网络环境受限的情况下。这篇文章将详细讲解如何在CentOS 7.9上离线安装PHP环境,以及所需的...

    CentOs下安装PHP扩展 curl

    在CentOS系统中,安装PHP扩展是服务器管理中常见的任务,尤其当需要处理与网络相关的功能,如HTTP请求,或者需要使用cURL库时。本文将详细讲解如何在CentOS环境下,不重新编译PHP的情况下,安装cURL扩展。 1. **...

    自动化安装php

    在IT行业中,自动化安装PHP是一项基础且重要的任务,特别是在服务器管理和运维工作中。本文将深入探讨如何自动化安装PHP 5.5.18,帮助你解决手动编译安装时可能遇到的困难和错误。 首先,我们需要了解PHP的安装过程...

    Eclipse安装php插件

    Eclipse 安装 PHP 插件详解 作为一名专业的 IT 行业大师,我将根据提供的文件信息,生成相关的知识点,帮助开发者快速安装和配置 Eclipse 中的 PHP 插件,从而进行 PHP 项目开发。 知识点 1:Eclipse 安装 PHP ...

    libxml2 安装Php5时会提示缺少libxml2

    安装Php5时会提示缺少libxml2 libxml是一个用来解析XML文档的函数库。它用C语言写成, 并且能为多种语言所调用,例如C语言,C++,XSH。C#, Python,Kylix/Delphi,Ruby,和PHP等。Perl中也可以使用XML::LibXML模块。...

    docker安装PHP5.6版本

    docker安装PHP5.6镜像文件,mac下成功运行起来

    IIS下安装PHP及Mysql教程

    3. **安装PHP5**: 下载适合Windows Server 2003的PHP5安装包,推荐选择非线程安全版本。安装过程中,选择“Web服务扩展”安装方式,以便与IIS6集成。安装后,在IIS中为PHP添加一个新的ISAPI筛选器,并指定到...

    Ubuntu下安装php扩展

    在Ubuntu系统中,安装PHP扩展是一项常见的任务,用于增强PHP的功能。本文主要介绍不随同PHP编译,而是通过生成单独的`.so`文件来安装扩展的方法,这种方法虽然执行效率可能略低,但能实现模块化的扩展管理,使得在不...

    安装PHP需要的依赖

    在安装PHP时,确保系统拥有必要的依赖是至关重要的。这些依赖不仅影响PHP的编译和安装过程,还可能影响其功能和性能。以下是对标题和描述中提到的PHP依赖的详细解释,以及压缩包文件中可能包含的相关组件: 1. **...

    debian编译安装php7.4.30.txt

    debian编译安装php7.4.30.txt 编译安装更稳定! 每一行复制执行即可完成安装!

    阿里云centos7.6安装php7.3的详细教程

    "阿里云centos7.6安装php7.3的详细教程" 本篇文章主要讲述了在阿里云 centos7.6 环境下安装 php7.3 的详细步骤。 首先,需要添加一个新的用户和用户组,用于编译和运行 php。命令如下: ``` groupadd www useradd ...

    Mac下切换Brew 安装PHP的版本切换

    本文将详细介绍如何在Mac上使用Brew来安装PHP,并且讲解如何进行PHP版本的切换,以满足开发过程中对不同版本PHP的需求。 首先,你需要确保你的Mac已经安装了Homebrew。如果没有,可以通过在终端中运行以下命令来...

    suse linux下安装php5、Lighttpd .

    ### SUSE Linux 下安装 PHP5 和 Lighttpd 的详细步骤 在 SUSE Linux 系统中安装 PHP5 和 Lighttpd 需要遵循一系列具体的步骤。本文将详细介绍这一过程中的关键步骤和技术要点,帮助读者顺利完成安装配置。 #### 1....

    如何安装php

    标题 "如何安装php" 涉及到的是在计算机上安装PHP编程语言的过程。PHP是一种广泛使用的开源服务器端脚本语言,尤其适用于Web开发,可以嵌入到HTML中使用。以下是一个详细的步骤来帮助你安装PHP: 1. **选择版本**:...

    centos7编译安装php

    centos7编译安装php

    redhat一键安装php脚本

    一键安装php到linux上的脚本,php程序地址为: http://download.csdn.net/detail/totola147/7865617 执行时请先定义APACHE_HOME 如果没有安装apache请先安装apache 在当前shell环境中运行安装脚本,而不能在子shell...

    Dockerfile 安装php7.3 sqlsrv

    一键安装php7.3 ,php连接sqlserver插件配置ODBC扩展

Global site tag (gtag.js) - Google Analytics