web-dev-qa-db-ja.com

php5-fpm:依存:php5-common(= 5.3.10-1ubuntu3.8)、ただし5.4.6-1ubuntu1.4がインストールされる

FastCGIを使用してNginxの背後にPHPを設定したいが、Sudo apt-get -f install php5-fpm

私が試したこと:

Sudo apt-get -f install php5-fpm 
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 php5-fpm : Depends: php5-common (= 5.3.10-1ubuntu3.8) but 5.4.6-1ubuntu1.4 is to be installed
E: Unable to correct problems, you have held broken packages.

私のソースリスト(このサーバーはウクライナのネットワークのみに制限されており、世界に接続していません)

deb http://mirror.yandex.ru/ubuntu precise universe
deb http://mirror.yandex.ru/ubuntu precise-updates universe

deb http://mirror.yandex.ru/ubuntu quantal-security main restricted
deb-src http://mirror.yandex.ru/ubuntu quantal-security main restricted
1
dvrecmfo

問題は、異なるバージョンのリポジトリが混在していることです。あなたはそれをするべきではありません!

ヤンデックスには主な制限がないため、正確な宇宙

Yandexリポジトリは、mainrestricteduniverseおよびmultiverseですべてのpreciseprecise-updatesおよびprecise-securityここに見られるように:

enter image description here

enter image description here

enter image description here

リポジトリを修正したら、Sudo apt-get updateそしてそれは大丈夫です。

php5-fpmが必要なため、quantal-security mainは制限されています

正確なパッケージがあります!

http://packages.ubuntu.com/search?keywords=php5-fpm

0
Braiam