apache2を初めてインストールできない

apache2を初めてインストールできない

ローカル サーバーをインストールしようとしていますが、Apache をインストールする場所でこのエラーを回避できないようです。

ターミナルで実行しsudo apt-get install apache2、Enter キーを押すと次のメッセージが表示されます。

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:
apache2 : Depends: apache2-bin (= 2.4.7-1ubuntu4.9) but it is not going to be installed
E: Unable to correct problems, you have held broken packages.

これを修正するにはどうすればいいでしょうか? 私は Linux 初心者なので。

答え1

システムに Apache が以前にインストールされているようです。まず、apt-get install -f --reinstall apache2満たさ-fれていない依存関係を修正するために を試してください。それでも問題が解決しない場合は、 を試してくださいapt-get remove --purge -s apache2。Purge は設定ファイルを削除し、 は-s「テスト アンインストール」(何も削除しない) を実行するので、どのパッケージが削除されるかを確認できます (削除されるのは apache2 関連のパッケージのみのはずです。不明な場合は、出力をここに投稿してください)。次に を実行しますapt-get install apache2

関連情報