centos7にThunderbird 31.4をインストールする方法

centos7にThunderbird 31.4をインストールする方法

centos7にThunderbird 31.4をインストールしようとしています。

私がしたこと:

  1. 次のリンクからダウンロードしてください。サンダーバードページ
  2. タール-xvjf.....
  3. CDサンダーバード; ./サンダーバード

間違い:

bash: ./thunderbird: /lib/ld-linux.so.2: bad ELF interpreter: No such file or directory

32ビットライブラリをインストールしました。

  1. yum-y glibc.i686のインストール
  2. ./thunderbird... をもう一度実行してみてください。

新しいエラー:

./thunderbird: error while loading shared libraries: libstdc++.so.6: cannot open shared object file: No such file or directory

しかし、私がインストールした共有ライブラリはありません。

  1. Yumはlibstdc++.i686をインストールします。
  2. ./thunderbirdをもう一度実行してみてください…

新しいエラー:

XPCOMGlueLoad error for file /opt/thunderbird/libxul.so:
libXrender.so.1: cannot open shared object file: No such file or directory
Couldn't load XPCOM.

だから私はこれらのパッケージをインストールしました(yum whatprovidesを使ってエラーライブラリを見つけます)。

yum install libXrender-0.9.8-2.1.el7.i686
yum install alsa-lib-1.0.27.2-3.el7.i686
yum install dbus-glib-0.100-7.el7.i686

その後、Thunderbirdを再実行しようとすると、新しいエラーが発生します。

XPCOMGlueLoad error for file /opt/thunderbird/libxul.so:
libgtk-x11-2.0.so.0: cannot open shared object file: No such file or irectory
Couldn't load XPCOM.

だから私は次を実行します。

yum whatprovides libgtk-x11-2.0.so.0

これらのライブラリを提供するものをインストールする代わりに、次の手順を実行します。

 yum install gtk2-2.24.22-5.el7.i686

yumで次のエラーが発生します。

--> 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 gtk2 which is missing some
        dependency that another package requires. Yum is trying to
        solve this by installing an older version of gtk2 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 gtk2.otherarch ... this should give you an error
        message showing the root cause of the problem.

     2. You have multiple architectures of gtk2 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 gtk2 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: gtk2-2.24.22-5.el7.i686 != gtk2-2.24.22-5.el7_0.1.x86_64    

ベストアンサー1

CentOS 7にThunderbirdをインストールする最も簡単な方法(見つかった):

su
yum install epel-release
yum search thunderbird
yum install thunderbird.(which ever version listed suits your platform)

epel-releaseは、最新のThunderbird(現在31.4)を含むEnterprise Linux用の追加パッケージです。

Thunderbirdsのリストは次のとおりです。
http://dl.fedoraproject.org/pub/epel/7/SRPMS/repoview/applications.internet.group.html

おすすめ記事