JD-GUI kann nicht mit gemeinsam genutzten 64-Bit-Bibliotheken ausgeführt werden, benötigt 32-Bit-Bibliotheken

JD-GUI kann nicht mit gemeinsam genutzten 64-Bit-Bibliotheken ausgeführt werden, benötigt 32-Bit-Bibliotheken

Ich habe versucht,JD-GUI, ein kostenloses Java-Decompiler-Programm, heute auf meinem Fedora 20-Laptop, aber beim Versuch, das Programm auszuführen, ist ein Fehler aufgetreten.

$ '/home/jflory/Downloads/jd-gui-0.3.5.linux.i686/jd-gui' 
/home/jflory/Downloads/jd-gui-0.3.5.linux.i686/jd-gui: error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory

Nachdem ich diesen Fehler erhalten hatte, habe ich herausgefunden, welches Paket diese Bibliothek bereitstellt.

$ sudo yum whatprovides libgtk-x11-2.0.so.0
gtk2-2.24.22-2.fc20.i686 : The GIMP ToolKit (GTK+), a library for creating GUIs for X
Repo        : fedora
Matched from:
Provides    : libgtk-x11-2.0.so.0

gtk2-2.24.24-2.fc20.i686 : The GIMP ToolKit (GTK+), a library for creating GUIs for X
Repo        : updates
Matched from:
Provides    : libgtk-x11-2.0.so.0

Mir ist aufgefallen, dass es sich bei diesem Paket um die 32-Bit-Architektur handelt. Ich habe einen 64-Bit-Computer und verwende die 64-Bit-Version von Fedora 20. Ich habe versucht, die 32-Bit-Version von zu installieren gtk2.

$ sudo yum install gtk2.i686
Resolving Dependencies
--> Running transaction check
---> Package gtk2.i686 0:2.24.24-2.fc20 will be installed
[snip]
--> Running transaction check
[snip]
--> Finished Dependency Resolution

Error:  Multilib version problems found. This often means that the root
       cause is something else and multilib version checking is just
       pointing out that there is a problem. Eg.:

     1. You have an upgrade for cairo which is missing some
        dependency that another package requires. Yum is trying to
        solve this by installing an older version of cairo of the
        different architecture. If you exclude the bad architecture
        yum will tell you what the root cause is (which package
        requires what). You can try redoing the upgrade with
        --exclude cairo.otherarch ... this should give you an error
        message showing the root cause of the problem.

     2. You have multiple architectures of cairo installed, but
        yum can only see an upgrade for one of those architectures.
        If you don't want/need both architectures anymore then you
        can remove the one with the missing update and everything
        will work.

     3. You have duplicate versions of cairo installed already.
        You can use "yum check" to get yum show these errors.

   ...you can also use --setopt=protected_multilib=false to remove
   this checking, however this is almost never the correct thing to
   do as something else is very likely to go wrong (often causing
   much more problems).

   Protected multilib versions: cairo-1.12.16-1.4.i686 != cairo-1.13.1-0.1.git337ab1f.fc20.x86_64

Es scheint also, dass die Installation des 32-Bit-Architekturpakets gtk2zahlreiche weitere Auswirkungen hat. Ich habe herumgesucht und gefundendieser Threadauf LinuxQuestions.org, und anscheinend bestand seine Lösung darin, zu laufen yum updateund dann auszuführen yum install gtk2.i686. Bei mir funktioniert das jedoch nicht.

Mein Laptop ist mit allen Paketen in den Fedora-Repositories vollständig aktualisiert. Mein Linux-Kernel ist 3.16.3-200.fc20.x86_64.

Wie kann ich JD-GUI letztendlich mit meinem Computer zum Laufen bringen, ohne die 64-Bit-Bibliotheken zu entfernen? Gibt es eine Problemumgehung für die Kompatibilität der 64-Bit-/32-Bit-Pakete?

Antwort1

Hallo, um ein ähnliches Problem zu lösen, hat es mir geholfen, zuerst die .x64-Version zu installieren.

Es scheint, als würde sich Yum über unterschiedliche Versionen des installierten .x64-Pakets und des .i686-Pakets beschweren, das Sie installieren möchten.

Also

sudo yum install gtk2.x86_64

sudo yum install gtk2.i686

hat bei mir funktioniert

Antwort2

Was bei mir funktioniert hat, war

rpm --erase --nodeps cairo

Dadurch wird das cairoPaket entfernt, ohne die Abhängigkeiten zu prüfen, die durch eine solche Aktion verletzt werden könnten. Anschließend folgt

yum install cairo

welches Cairo aus den konfigurierten Paket-Repositories installiert

verwandte Informationen