web-dev-qa-db-fra.com

Les paquets ne sont pas installés!

J'essaie d'installer des paquets en utilisant apt-get

Ce sont les packages suivants:

root@ubunto:/# Sudo apt-get install build-essential libssl-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package libcurl4-gnutls-dev 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: Unable to locate package build-essential
E: Unable to locate package libssl-dev
E: Package 'libcurl4-gnutls-dev' has no installation candidate
E: Unable to locate package libexpat1-dev
E: Unable to locate package gettext
E: Unable to locate package unzip

Mon objectif principal est d'installer le paquet make, dont j'ai besoin pour installer manuellement une version plus basse de PHP.

C'est ce qui s'est passé:

root@ubunto:~/php-5.4.31# make
The program 'make' is currently not installed. You can install it by typing:
apt-get install make

Et puis je continue et fais 'apt-get install make'

root@ubunto:/# apt-get install make
Reading package lists... Done
Building dependency tree
Reading state information... Done
Package make 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 'make' has no installation candidate

J'utilise Ubuntu 14.04.1 LTS sur une machine virtuelle (Hyper-V) si cela aide

3
user3170899

J'ai eu le même problème que quelques jours auparavant. Essayer de courir

# apt-get update

Votre apt-repository est obsolète. C'est peut-être le problème.

2
LittleByBlue