Hi, I want to share with you a little “trick” to make Evince work (the default PDF Reader for Ubuntu) if it doesn’t and you’re using the latest version (for example the one that you can find on Intrepid Ibex). If you get this error when you try to launch it using the Terminal:
evince: error while loading shared libraries: libpoppler-glib.so.3: cannot open shared object file: No such file or directory
the problem is easily resolved by linking the new libpoppler (which changed its version and file names) with the older one names, and Evince will simply work again! So, open up a Terminal and type these commands:
sudo -s cd /usr/lib ln -s libpoppler.so.4.0.0 libpoppler.so.3 ln -s libpoppler-glib.so.4.0.0 libpoppler-glib.so.3
That’s all!
(5 users liked this)