64ビット共有ライブラリを使用してJD-GUIを実行することはできません。 32ビットライブラリが必要です。

64ビット共有ライブラリを使用してJD-GUIを実行することはできません。 32ビットライブラリが必要です。

使ってみましたジンドンGUI無料のJavaデコンパイラが今日私のFedora 20ノートブックで実行されていましたが、プログラムを実行しようとしたときにエラーが発生しました。

$ '/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

このエラーを受け取った後、このライブラリを提供するパッケージが何であるかを調べました。

$ 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

このパッケージは32ビットアーキテクチャ用であることがわかりました。私は64ビットコンピュータを持っており、64ビットバージョンのFedora 20を使用しています。 32ビット版をインストールしてみました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

したがって、32ビットアーキテクチャパッケージをインストールすることはgtk2他の多くの意味を持つようです。あちこち見回りが見つかりました。このスレッドLinuxQuestions.orgでは、明らかに彼のソリューションは動作yum updateし実行されますyum install gtk2.i686。しかし、これは私には機能しません。

私のラップトップはFedoraリポジトリのすべてのパッケージで完全に更新されました。私のLinuxカーネルは3.16.3-200.fc20.x86_64

最終的に64ビットライブラリを削除せずにJD-GUIが自分のコンピュータで動作するようにするにはどうすればよいですか? 64ビット/ 32ビットパッケージの互換性に対する回避策はありますか?

ベストアンサー1

こんにちは。同様の問題を解決するために、.x64バージョンを最初にインストールするのに役立ちました。

yumがインストールしたい.i686バージョンとは異なるバージョンの.x64パッケージがインストールされていると文句を言うようです。

だから

sudo yum install gtk2.x86_64

sudo yum install gtk2.i686

私のために働く

おすすめ記事