web-dev-qa-db-fra.com

Impossible d’installer ia32-libs sur Ubuntu 14.04 64bit?

J'essaie d'installer Adobe Air, mais je dois installer ia32-libs pour cela.

J'ai essayé plusieurs solutions fournies ici mais aucune d'entre elles n'a vraiment fonctionné.

jakub@jakub-home:~/Downloads$ Sudo apt-get install ia32-libs
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package ia32-libs 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
However the following packages replace it:
  lib32z1 lib32ncurses5 lib32bz2-1.0

E: Package 'ia32-libs' has no installation candidate

jakub@jakub-home:~/Downloads$ Sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 adobeair : Depends: ia32-libs-gtk but it is not installable or
                     devolo-ia32-libs but it is not installable
 lib32bz2-1.0 : PreDepends: libc6-i386 (>= 2.9-18) but it is not going to be installed
 lib32ncurses5 : Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1) but it is not going to be installed
                 Depends: libc6-i386 (>= 2.4) but it is not going to be installed
 lib32z1 : Depends: libc6-i386 (>= 2.4) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).

J'ai essayé plusieurs solutions trouvées ici, juste un exemple de ici :

jakub@jakub-home:~/Downloads$ Sudo dpkg --add-architecture i386 && Sudo apt-get update && Sudo apt-get install ia32-libs

...
Ign http://linux.dropbox.com trusty/main Translation-en_US         
Ign http://linux.dropbox.com trusty/main Translation-en
Fetched 316 B in 3s (84 B/s)                   
Reading package lists... Done
W: GPG error: http://ppa.launchpad.net trusty Release: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY C2518248EEA14886
Reading package lists... Done
Building dependency tree       
Reading state information... Done
Package ia32-libs 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
However the following packages replace it:
  lib32z1 lib32ncurses5 lib32bz2-1.0

E: Package 'ia32-libs' has no installation candidate

Il doit y avoir un problème fondamental ici. Est-ce que quelqu'un peut m'aider à comprendre?

METTRE À JOUR:

jakub@jakub-home:~/Downloads$ Sudo apt-get install lib32z1 lib32ncurses5 lib32bz2-1.0
Reading package lists... Done
Building dependency tree       
Reading state information... Done
You might want to run 'apt-get -f install' to correct these:
The following packages have unmet dependencies:
 adobeair:i386 : Depends: libgtk2.0-0:i386 (>= 2.6) but it is not going to be installed
                 Depends: libnss3:i386 but it is not going to be installed
                 Depends: libxaw7:i386 but it is not going to be installed
 lib32bz2-1.0 : PreDepends: libc6-i386 (>= 2.9-18) but it is not going to be installed
 lib32ncurses5 : Depends: lib32tinfo5 (= 5.9+20140118-1ubuntu1) but it is not going to be installed
                 Depends: libc6-i386 (>= 2.4) but it is not going to be installed
 lib32z1 : Depends: libc6-i386 (>= 2.4) but it is not going to be installed
E: Unmet dependencies. Try 'apt-get -f install' with no packages (or specify a solution).
3
jaksky

Le paquet ia32-libs n'est plus disponible depuis que Ubuntu a introduit le multiarch. Les bibliothèques mentionnées dans le message, lib32z1 lib32ncurses5 lib32bz2-1.0, remplaceront entièrement les fonctionnalités requises par ia32-libs. Si un paquet dépend spécifiquement de la bibliothèque, il devra être reconditionné.

Adobe Air n'a jamais été reconditionné pour multiarch. Vous pouvez essayer de trouver un package qui fonctionne ou d'installer à partir d'un ancien référentiel, mais cela se fait à vos risques et périls.

Voir également:

Le paquet ia32-libs n’a pas été trouvé dans Adobe Air

Qu'est-il arrivé au paquet ia32-libs?

Comment puis-je installer Adobe AIR?

4
SM8
Sudo apt-get -f install

résolu le problème

0
jaksky