パッケージリストを読み込んでいます...依存関係ツリーを構築しています
状態情報を読み込んでいます...完了パッケージlibapache2-mod-fastcgiは使用できませんが、別のパッケージによって参照されています。これは、パッケージが見つからないか、廃止されているか、別のソースからしか入手できないことを意味します
E:パッケージ 'libapache2-mod-fastcgi'にはインストール候補がありません
======/etc/apt/source.list ========================
deb http://ftp.es.debian.org/debian wheezy main non-free contrib
deb-src http://ftp.es.debian.org/debian wheezy main non-free contrib
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src htp://security.debian.org/ wheezy/updates main contrib non-free
deb http://ftp.es.debian.org/debian wheezy-updates main contrib non-free
deb-src http://ftp.es.debian.org/debian wheezy-updates main contrib non-free
deb htp://ftp.es.debian.org/debian testing main
deb-src http://ftp.es.debian.org/debian testing main
================================================== ===
私は試してみました:apt-get update apt-get upgrade apt-get -b source libapache2-mod-fastcgi
何が起こったのかわかりません。誰かが私を助けてくれませんか?ありがとう
そのパッケージはnon-freeにありますが、ソースリストが間違っています。同じ行に複数のソースがあり、「http」の代わりに「hxxp」があります。それをsources.listとして使用すると、apt-get updateでエラーが発生します(問題を示しているはずです)。
/etc/apt/sources.listファイルを次のように作成します。
deb http://ftp.es.debian.org/debian stable main contrib non-free
deb-src http://ftp.es.debian.org/debian stable main contrib non-free
deb http://ftp.debian.org/debian/ wheezy-updates main contrib non-free
deb-src http://ftp.debian.org/debian/ wheezy-updates main contrib non-free
deb http://security.debian.org/ wheezy/updates main contrib non-free
deb-src http://security.debian.org/ wheezy/updates main contrib non-free
「apt-get update」を再実行すると、「apt-get install libapache2-mod-fastcgi」でインストールできるはずです。