亚洲av成人无遮挡网站在线观看,少妇性bbb搡bbb爽爽爽,亚洲av日韩精品久久久久久,兔费看少妇性l交大片免费,无码少妇一区二区三区

Chinaunix

標(biāo)題: linux下apache +php 常見錯(cuò)誤解決方法 [打印本頁]

作者: 聽老歌    時(shí)間: 2012-02-03 18:27
標(biāo)題: linux下apache +php 常見錯(cuò)誤解決方法
linux下apache +php 常見錯(cuò)誤解決方法







如果使用的是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)


Java代碼
  1. 1.Configure: error: xml2-config not found. Please check your libxml2 installation.#yum install libxml2 libxml2-devel (For Redhat & Fedora)  
  2. Configure: error: xml2-config not found. Please check your libxml2 installation.#yum install libxml2 libxml2-devel (For Redhat & Fedora)
  3. # aptitude install libxml2-dev      (For ubuntu)
  4. 2)
復(fù)制代碼
Java代碼
  1. 1.Checking for pkg-config… /usr/bin/pkg-config   
  2. 2.configure: error: Cannot find OpenSSL’s <evp.h>#  
  3. Checking for pkg-config… /usr/bin/pkg-config
  4. configure: error: Cannot find OpenSSL’s <evp.h>#yum install openssl openssl-devel
  5. 3)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: Please reinstall the BZip2 distribution# yum   
  2. Configure: error: Please reinstall the BZip2 distribution# yum install bzip2 bzip2-devel
  3. 4)

  4. Configure: error: Please reinstall the libcurl distribution -easy.h should be in <curl-dir>/include/curl/# yum install curl curl-devel   (For Redhat & Fedora)
  5. # install libcurl4-gnutls-dev    (For Ubuntu)
  6. 5)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: libjpeg.(also) not found.  
  2. Configure: error: libjpeg.(also) not found.# yum install libjpeg libjpeg-devel
  3. 6)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: libpng.(also) not found.  
  2. Configure: error: libpng.(also) not found.# yum install libpng libpng-devel
  3. 7)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: freetype.h not found  
  2. Configure: error: freetype.h not found.#yum install freetype-devel
  3. 8)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: Unable to locate gmp.h  
  2. Configure: error: Unable to locate gmp.h# yum install gmp-devel
  3. 9)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: Cannot find MySQL header files under /usr.   
  2. 2.Note that the MySQL client library is not bundled anymore!# yum install mysql-devel            (For Redhat & Fedora)   
  3. Configure: error: Cannot find MySQL header files under /usr.
  4. Note that the MySQL client library is not bundled anymore!# yum install mysql-devel            (For Redhat & Fedora) # apt-get install libmysql++-dev      (For Ubuntu)
  5. 10)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: Please reinstall the ncurses distribution  
  2. Configure: error: Please reinstall the ncurses distribution# yum install ncurses ncurses-devel
  3. 11)
復(fù)制代碼
Java代碼
  1. 1.Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!  
  2. Checking for unixODBC support… configure: error: ODBC header file ‘/usr/include/sqlext.h’ not found!# yum install unixODBC-devel
  3. 12)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: Cannot find pspell  
  2. Configure: error: Cannot find pspell# yum install pspell-devel
  3. 13)
復(fù)制代碼
Java代碼
  1. 1.configure: error: mcrypt.h not found. Please reinstall libmcrypt.# yum install libmcrypt libmcrypt-devel    (For Redhat & Fedora)   
  2. configure: error: mcrypt.h not found. Please reinstall libmcrypt.# yum install libmcrypt libmcrypt-devel    (For Redhat & Fedora) # apt-get install libmcrypt-dev
  3. 14)
復(fù)制代碼
Java代碼
  1. 1.Configure: error: snmp.h not found. Check your SNMP installation.#   
  2. Configure: error: snmp.h not found. Check your SNMP installation.# yum install net-snmp net-snmp-devel
復(fù)制代碼
以上均是轉(zhuǎn)載內(nèi)容

作者: 冰釋一片天    時(shí)間: 2012-02-03 18:27
謝謝分享




歡迎光臨 Chinaunix (http://72891.cn/) Powered by Discuz! X3.2