opensuse 12.1 下简单安装lighttpd+php

发布时间:2021-01-11编辑:脚本学堂
opensuse 12.1 下简单安装lighttpd+php

安装;lighttpd
 

复制代码 代码如下:

tar xvf lighttpd.tar
./configure
configure: error: pcre-config not found, install the pcre-devel package or build with --without-pcre

zypper install pcre-devel

configure: error: bzip2-headers and/or libs where not found, install them or build with --without-bzip2

bzip2 下载地址 http://www.bzip.org/1.0.5/bzip2-1.0.5.tar.gz

复制代码 代码如下:

tar zxvf  bzip2-1.0.5.tar.gz
make && make install

很简单,大家仅作参考,抛砖引玉吧。