php5.4 安装出现问题cp: cannot stat `sapi/cli/php.1': No such file or directory

在安装php5.4时出现下面的错误:

当make正常,但是使用make install出现错误:cp: cannot stat `sapi/cli/php.1‘: No such file or directory

解决的办法如下:

make install fails -> cp: cannot stat sapi/cli/php.1: No such file

So after doing some research I found the solution so just note to keep in mind if the same problem is encountered again.

The fixt that worked was using the following commands:

find . -name ‘*.1‘ > /tmp/php-1.lst.$$

tar -cf /tmp/php-1.tar.$$ -T /tmp/php-1.lst.$$

make clean

tar -xf /tmp/php-1.tar.$$

rm /tmp/php-1.tar.$$ /tmp/php-1.lst.$$

then ‘make install‘ should work.

php5.4 安装出现问题cp: cannot stat `sapi/cli/php.1': No such file or directory

时间: 2024-12-06 00:42:48

php5.4 安装出现问题cp: cannot stat `sapi/cli/php.1': No such file or directory的相关文章

编译安装apr 1.5.2 时报 rm: cannot remove `libtoolT': No such file or directory

今天在编译安装apr-1.5.2 的时候执行./configure --prefix=/usr/local/apr 的时候报了一个这么样的信息 " rm: cannot remove `libtoolT': No such file or directory",详细如下图: 解决过程: 1.网上看了一下,有很多人使用如下三个命令解决了,但是我执行了一下,结果在重新./configure --prefix=/usr/local/apr 的时候还是报这个错误. 网上流传的三个命令如下: #

Python 安装zbar-py时出现 无法打开包括文件: “unistd.h” no such file or directory

问题 途中使用的命令是cl.exe,在执行命令的时候找不到对应的unistd.h文件. unistd.h是Unix系统的文件,因此,十有八九,使用的是Windows系统.下面的代码可以修复,但是如果修复了unistd.h,很大概率你还会有更多个*.h文件找不到.劝退. 解决 找到这个编译器所在的文件夹的include文件夹,并且unistd.h文件复制进去即可.可以新建一个文本文件,把名字和后缀名改为unistd.h. #ifndef _UNISTD_H #define _UNISTD_H 1

Linux下Apache2.2和PHP5的安装配置

Linux下Apache2.2和PHP5的安装配置 环境介绍 我安装使用的Linux版本为CentOS6.5最精简版,Apache为2.2.29,PHP版本为5.4.28. 系统安装 首先安装CentOS操作系统,由于是最小包,所以很多东西默认没有安装,装好需要做几点配置. 1.将系统的网卡打开,以便系统可以连接网络.(系统默认为关闭状态) 要修改的文件是:/etc/sysconfig/network-scripts/ifcfg-eth0 在这个文件中有:ONBOOT=no,将这个配置项改为ye

php5.3 安装 Zend Guard Loader

解包 tar -zxvf ZendGuardLoader-php-5.3-linux-glibc23-x86_64.tar.gz 复制 ZendGuardLoader.so 至 PHP 扩展目录 cp ZendGuardLoader.so /path/to/extension_dir 编辑 php.ini zend_extension=/path/to/extension_dir/no-debug-non-zts-20090626/ZendGuardLoader.so Add an aditio

在Linux系统中为PHP5.3安装Zend Guard Loader

从PHP5.3开始如果要支持ZendGuard加密的PHP代码,必须安装Zend Guard Loader,老的zend optimizer将不被支持. 本文介绍如何在Linux系统中为PHP5.3安装Zend Guard Loader支持的过程. 操作系统为CentOS5.5,PHP版本为5.3.8(CentOS5.5中的PHP默认版本较低,如果要升级到PHP最新版,可以使用remi的report源进行升级). 1.Zend Guard Loader官方下载地址: i386版下载地址: htt

windows7 64位 php5.3安装php_mongo.dll方法 各个版本

https://s3.amazonaws.com/drivers.mongodb.org/php/index.html windows7 64位 php5.3安装php_mongo.dll方法windows7 64位 php5.3安装php_mongo.dll方法 各个版本,码迷,mamicode.com

在Windows 下为PHP5.4安装PEAR, PHPUnit , phpDoc2

1.安装PEAR   官方网站: http://pear.php.net/   PHP 5.4 的 Windows 包中没有自带 PEAR,下载 http://pear.php.net/go-pear.phar 到PHP目录,并运行: php go-pear.phar 安装完成后PHP目录下会产生一个名为 pear.bat 的批处理文件,并且会在系统中添加以下环境变量(用户变量,假定PHP安装在C:\php): PHP_PEAR_BIN_DIR=C:\php PHP_PEAR_DATA_DIR=

php5.5安装及phpmyadmin&nginx配置php模块

安装php5.5: 下载源地址:rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm rpm包安装:yum install php55w.x86_64 php55w-cli.x86_64 php55w-common.x86_64 php55w-gd.x86_64 php55w-ldap.x86_64 php55w-mbstring.x86_64 php55w-mcrypt.x86_64 php55w-mysql.x86_64 php55w-

解决php5.4安装pdo_mysql出错

今天给新的测试机安装lamp环境,但php要求5.4,mysql是5.5,apache是2.2,这样一来我就只能手动安装了,最后居然让php5.4整得我差点无法使这个环境正常运行了,因为大家都知道安装了php,必然要安装pdo_mysql,罪魁祸首就是这个pdo_mysql,下面我来说说怎么解决的.   系统:centos 5.5   需要的软件:httpd-2.2.22.tar.gz              php-5.4.11.tar.gz              mysql-5.5.2