web-dev-qa-db-fra.com

E: Le paquet 'Apache2' n'a pas de candidat pour l'installation sur Ubuntu 17.10

Vous avez l'erreur E: Package 'Apache2' has no installation candidate lors de l'installation d'Apache2 avec Sudo apt-get install Apache2 sur Ubuntu 17.10. Voici le message affiché sur le terminal.

Sudo apt-get install Apache2
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package Apache2 is not available, but is referred to by another package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

E: Package 'Apache2' has no installation candidate

Message après la commande apt-cache policy Apache2.

Apache2:
  Installed: (none)
  Candidate: (none)
  Version table:

Message après la commande egrep -v '^#|^ *$' /etc/apt/sources.list /etc/apt/sources.list.d/*.list

/etc/apt/sources.list.d/linuxgndu-ubuntu-sqlitebrowser-artful.list:deb http://ppa.launchpad.net/linuxgndu/sqlitebrowser/ubuntu artful main
/etc/apt/sources.list.d/mongodb-org-3.6.list:deb [Arch=AMD64,arm64] https://repo.mongodb.org/apt/ubuntu xenial/mongodb-org/3.6 multiverse
/etc/apt/sources.list.d/slack.list:deb https://packagecloud.io/slacktechnologies/slack/debian/ jessie main
/etc/apt/sources.list.d/sublime-text.list:deb https://download.sublimetext.com/ apt/stable/
/etc/apt/sources.list.d/vscode.list:deb [Arch=AMD64] http://packages.Microsoft.com/repos/vscode stable main
/etc/apt/sources.list.d/webupd8team-ubuntu-Java-artful.list:deb http://ppa.launchpad.net/webupd8team/Java/ubuntu artful main

Comment puis-je résoudre ce problème?

Screen shot of error while installing Apache2

2
Kiran Shahi

Le problème principal est raté /etc/apt/sources.list. Vous pouvez le recréer avec:

cat <<EOF | Sudo tee /etc/apt/sources.list
deb http://archive.ubuntu.com/ubuntu artful main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu artful-updates main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu artful-security main restricted universe multiverse
deb http://archive.ubuntu.com/ubuntu artful-backports main universe restricted multiverse
EOF

Puis courir

Sudo apt-get update
Sudo apt-get dist-upgrade
Sudo apt-get install Apache2
4
N0rbert

Essayez Sudo apt-get update puis Sudo apt-get install Apache2. Je recommande d'installer la pile complète de LAMP avec tasksel

Sudo apt-get install tasksel

Sudo tasksel pour le lancer Sélectionnez le serveur LAMP et installez-le. J'espère que cela pourra aider.

2
Pranal Narayan