Ich versuche, einen lokalen Server zu installieren, komme aber bei der Installation von Apache scheinbar nicht an diesem Fehler vorbei.
Auf meinem Terminal führe ich es aus sudo apt-get install apache2
und wenn ich die Eingabetaste drücke, erhalte ich Folgendes:
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.
Wie behebe ich das? Ich bin neu bei Linux, deshalb.
Antwort1
Anscheinend haben Sie eine frühere Apache-Installation auf Ihrem System. Ich würde zunächst versuchen apt-get install -f --reinstall apache2
, -f
nicht erfüllte Abhängigkeiten zu beheben. Wenn das das Problem nicht löst, würde ich versuchen apt-get remove --purge -s apache2
, . Purge entfernt Konfigurationsdateien und -s
führt eine „Test-Deinstallation“ durch (nichts wird entfernt), sodass Sie prüfen können, welche Pakete entfernt werden (es sollten nur Apache2-bezogene Pakete sein, wenn Sie sich nicht sicher sind, veröffentlichen Sie die Ausgabe hier). Dann apt-get install apache2
.