10

I get the error after executing acroread:

acroread: error while loading shared libraries:
libxml2.so.2: cannot open shared object file: No such file or directory
  • Additionally (for me) sudo apt-get install libgtk2.0-0:i386 installs a zillion i386 packages, but hey, we want to be able to run adobe-still-32bits-in-2014 code. –  Mar 31 '14 at 07:36

3 Answers3

17

You need to install the libs:32. Execute these commands:

sudo apt-get install libstdc++6:i386
sudo apt-get install libxml2:i386
Eric Carvalho
  • 54,385
Vasco Silva
  • 171
  • 1
  • 2
6

In addition to making sure libxml2 is installed and depending on which version of Ubuntu you are running -- I upgraded from 10.04 to 12.04 -- you also might need to have ia32-libs installed as noted here.

1

You are missing libxml2 library. Install it from terminal:

sudo apt-get install libxml2
  • 2
    to be exact... I tried to install the x32 version and noticed a few packages, that were not installed on default for x64 system. One of them was libxml2 :) – mathematiker Jun 14 '12 at 20:53