- 浏览: 59053 次
- 性别:
- 来自: 苏州
最新评论
-
se7en8974:
有效。顶一个
老外的lovcombo 使用注意点 -
yekki:
rake rails:freeze:gem与rake rail ...
rake rails:freeze -
tianzhihua:
把你的错误贴上来吧
Struts2 Map 映射 -
myoldman:
我记得java里面integer的最大数值为214748364 ...
Struts2 Map 映射
yum install g++ yum install gcc yum install make 安装python 开发组件 yum install python yum install python-dev 安装make yum install make 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 就基本上搞定,但是用源代码安装还是很麻烦~
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 :
#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 :
#yum install openssl openssl-devel |
3) Configure: error: Please reinstall the BZip2 distribution
Solutions :
# yum install bzip2 bzip2-devel |
4) Configure: error: Please reinstall the libcurl distribution -
easy.h should be in <curl-dir>/include/curl/
Solutions :
# yum install curl curl-devel (For Redhat & Fedora)
# install libcurl4-gnutls-dev (For Ubuntu) |
5) Configure: error: libjpeg.(also) not found.
Solutions :
# yum install libjpeg libjpeg-devel |
6) Configure: error: libpng.(also) not found.
Solutions :
# yum install libpng libpng-devel |
7) Configure: error: freetype.h not found.
Solutions :
#yum install freetype-devel |
8) Configure: error: Unable to locate gmp.h
Solutions :
# 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 :
# yum install mysql-devel (For Redhat & Fedora)
# apt-get install libmysql++-dev (For Ubuntu) |
10) Configure: error: Please reinstall the ncurses distribution
Solutions :
# yum install ncurses ncurses-devel |
11) Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!
Solutions :
# yum install unixODBC-devel |
12) Configure: error: Cannot find pspell
Solutions :
# yum install pspell-devel |
13) configure: error: mcrypt.h not found. Please reinstall libmcrypt.
Solutions :
# 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 :
# 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
发表评论
-
Spring Security 3.x 完整入门教程
2010-09-06 10:20 2571Spring Security 3.x 完整入门教程 本Blo ... -
setup.linux
2010-09-01 17:05 966yum -y install gccyum -y instal ... -
Linux下创建与解压tar, tar.gz和tar.bz2文件及压缩率对比
2010-08-30 15:48 4838Linux下创建与解压tar, tar.gz和tar.bz2文 ... -
linux下编译安装php的参数
2010-08-27 13:57 1524linux下编译安装php的参数 Fast-CGI: ... -
MySQL+PHP5+Apache安装手记
2010-08-27 13:45 920http://database.51cto.com/art/2 ... -
安装mysql
2010-08-27 10:38 846先检查系统是否装上了mysql,如果有将其卸载掉rpm -qa ... -
rpm
2010-08-27 10:22 1103rpm -qpl xxxxxx.rpm 1.如何安装rp ... -
linux下编译安装php的参数汇总
2010-08-27 10:08 1585Fast-CGI:./configure --prefix=/ ... -
iptables用法
2010-08-27 09:32 2116iptables -A INPUT -p tcp --dpor ... -
linux的chmod,chown命令 详解
2010-08-26 16:38 888指令名称 : chmod 使用权限 : 所有使用者 使用方式 ... -
Install and Configure MySQL on Linux
2010-08-26 16:35 1569wget http://mirrors.sohu.com/ ... -
mysql
2010-08-26 14:21 7881、数据库目录 /var/lib/mysql/ 2、 ... -
Java中根据模板导出数据到word的解决方案
2010-02-25 10:06 5859我们需求如下:给你一个模板,里面有一个表格,标题已经给好,程 ... -
SQL树查询
2010-02-24 17:36 1587引用: --测试数据 深度排序 DEC ... -
基于java的程序OutOfMemory问题的解决及Xms/Xmx/Xss的解释和应用
2010-02-24 16:44 2093长期以来一直都是做java应用的开发,所使用的开发工具基本上也 ... -
neybean支持漂亮的中文
2009-10-13 17:08 0neybean支持漂亮的中文方法如下: -
sychroflow 状态
2009-01-13 18:00 7281. 创建状态 2. 运行状态 3. 挂起 4. 正常 ...
相关推荐
在Ubuntu 20.04系统中离线安装PHP 7.4可能是因为网络环境受限或者需要特定版本的PHP,这种情况下,我们需要手动下载所需的PHP 7.4源码包及其依赖,然后进行编译安装。以下是详细步骤: 1. **获取PHP 7.4源码包** ...
安装 PHP 的 bcmath 扩展 在 PHP 开发中,bcmath 扩展是一个非常重要的组件,它用于进行小数点精度计算。如果没有安装该扩展,则可能会导致一些问题,例如在校园超市商城小程序购物车里面商品的价格显示不正确。...
在Linux系统中,尤其是CentOS 7.9这样的企业级操作系统上,离线安装PHP环境依赖是一项关键任务,尤其在没有互联网连接或者网络环境受限的情况下。这篇文章将详细讲解如何在CentOS 7.9上离线安装PHP环境,以及所需的...
在CentOS系统中,安装PHP扩展是服务器管理中常见的任务,尤其当需要处理与网络相关的功能,如HTTP请求,或者需要使用cURL库时。本文将详细讲解如何在CentOS环境下,不重新编译PHP的情况下,安装cURL扩展。 1. **...
在IT行业中,自动化安装PHP是一项基础且重要的任务,特别是在服务器管理和运维工作中。本文将深入探讨如何自动化安装PHP 5.5.18,帮助你解决手动编译安装时可能遇到的困难和错误。 首先,我们需要了解PHP的安装过程...
Eclipse 安装 PHP 插件详解 作为一名专业的 IT 行业大师,我将根据提供的文件信息,生成相关的知识点,帮助开发者快速安装和配置 Eclipse 中的 PHP 插件,从而进行 PHP 项目开发。 知识点 1:Eclipse 安装 PHP ...
安装Php5时会提示缺少libxml2 libxml是一个用来解析XML文档的函数库。它用C语言写成, 并且能为多种语言所调用,例如C语言,C++,XSH。C#, Python,Kylix/Delphi,Ruby,和PHP等。Perl中也可以使用XML::LibXML模块。...
docker安装PHP5.6镜像文件,mac下成功运行起来
3. **安装PHP5**: 下载适合Windows Server 2003的PHP5安装包,推荐选择非线程安全版本。安装过程中,选择“Web服务扩展”安装方式,以便与IIS6集成。安装后,在IIS中为PHP添加一个新的ISAPI筛选器,并指定到...
在Ubuntu系统中,安装PHP扩展是一项常见的任务,用于增强PHP的功能。本文主要介绍不随同PHP编译,而是通过生成单独的`.so`文件来安装扩展的方法,这种方法虽然执行效率可能略低,但能实现模块化的扩展管理,使得在不...
在安装PHP时,确保系统拥有必要的依赖是至关重要的。这些依赖不仅影响PHP的编译和安装过程,还可能影响其功能和性能。以下是对标题和描述中提到的PHP依赖的详细解释,以及压缩包文件中可能包含的相关组件: 1. **...
debian编译安装php7.4.30.txt 编译安装更稳定! 每一行复制执行即可完成安装!
"阿里云centos7.6安装php7.3的详细教程" 本篇文章主要讲述了在阿里云 centos7.6 环境下安装 php7.3 的详细步骤。 首先,需要添加一个新的用户和用户组,用于编译和运行 php。命令如下: ``` groupadd www useradd ...
本文将详细介绍如何在Mac上使用Brew来安装PHP,并且讲解如何进行PHP版本的切换,以满足开发过程中对不同版本PHP的需求。 首先,你需要确保你的Mac已经安装了Homebrew。如果没有,可以通过在终端中运行以下命令来...
### SUSE Linux 下安装 PHP5 和 Lighttpd 的详细步骤 在 SUSE Linux 系统中安装 PHP5 和 Lighttpd 需要遵循一系列具体的步骤。本文将详细介绍这一过程中的关键步骤和技术要点,帮助读者顺利完成安装配置。 #### 1....
标题 "如何安装php" 涉及到的是在计算机上安装PHP编程语言的过程。PHP是一种广泛使用的开源服务器端脚本语言,尤其适用于Web开发,可以嵌入到HTML中使用。以下是一个详细的步骤来帮助你安装PHP: 1. **选择版本**:...
centos7编译安装php
一键安装php到linux上的脚本,php程序地址为: http://download.csdn.net/detail/totola147/7865617 执行时请先定义APACHE_HOME 如果没有安装apache请先安装apache 在当前shell环境中运行安装脚本,而不能在子shell...
一键安装php7.3 ,php连接sqlserver插件配置ODBC扩展