どのようにubuntuの下でlibgtk-x 11-2.0が見つからないことを解決します.so.0

1041 ワード

The following error came up when I tried to run Adobe Acrobat Reader on ubuntu 12.10
error while loading shared libraries: libgtk-x11-2.0.so.0: cannot open shared object file: No such file or directory
To fix this, simple install the package ia32-libs-gtk
$ sudo apt-get install ia32-libs-gtk

Now run the application again and the error should go away.
[原文:http://www.techmaze.net/fix-error-while-loading-shared-libraries-libgtk-x11-2-0-so-0/]
補足:
ubuntu 14.04の場合は、次の手順に従います.
方法1:
  sudo gedit/etc/apt/sources.list
最後に追加:debhttp://archive.ubuntu.com/ubuntu/raring main restricted universe multiverse
方法2:
端末に入力:
      echo "deb http://archive.ubuntu.com/ubuntu/raring main restricted universe multiverse" >>  sudo gedit/etc/apt/sources.list 
また、ローカルソースを追加する方法もあります.参考にしてください.http://hi.baidu.com/android4/item/6c0f962351a7ec102b0f1cac
ソースを追加した後
   sudo apt-get update
   sudo apt-get install ia32-libs ia32-libs-gtk
これでいいはずだ