(Ubuntu 10.04)当我安装php5时,如何摆脱安装apache2?

时间:2013-04-25 03:05:17

标签: ubuntu apt

由于我想使用nginx,我不想安装apache2

http://packages.ubuntu.com/lucid-updates/php5-curl 在该链接中,对apache2没有依赖性。

root@ubuntu:/etc/apt/apt.conf.d# apt-get install --no-install-recommends php5-curl
Reading package lists... Done
Building dependency tree       
Reading state information... Done
The following extra packages will be installed:
  apache2-mpm-prefork apache2-utils apache2.2-bin apache2.2-common libapache2-mod-php5 libaprutil1-dbd-sqlite3
  libaprutil1-ldap

Suggested packages:
  apache2-doc apache2-suexec apache2-suexec-custom php-pear

Recommended packages:
  ssl-cert

The following NEW packages will be installed:
  apache2-mpm-prefork apache2-utils apache2.2-bin apache2.2-common libapache2-mod-php5 libaprutil1-dbd-sqlite3
  libaprutil1-ldap php5-curl

0 upgraded, 8 newly installed, 0 to remove and 49 not upgraded.

Need to get 6,281kB of archives.
After this operation, 19.3MB of additional disk space will be used.

很烦人,我无法摆脱安装apache2

1 个答案:

答案 0 :(得分:2)

正如您从链接中看到的那样,该程序包取决于phpapi-20090626libapache2-mod-php5是由libapache2-mod-php5filterphp5-cgiphp5-cli或{之一提供的虚拟程序包{1}}。在没有理由的情况下,它会更喜欢第一个,这取决于Apache。

要解决此问题,请手动安装提供phpapi-20090626的其他软件包之一。后两个选项不依赖于Apache。

apt-get install php5-cli
apt-get install php5-curl 
相关问题