Adobe AIR install problem, Ubuntu x64 14.04 [duplicate]

Haven’t seen this kind of error on askubuntu yet.

Did everything as it says here:
How can I install Adobe AIR?

After sudo ./AdobeAIRInstaller.bin
shows this image:
dropbox.com/s/wg6cv03h5n1tqgr/adobe_air.png

Meanwhile terminal shows a bunch of such messages:

(setup:2579): Gtk-WARNING **: Unable to locate theme engine in module_path: "murrine",

Nothing is installed. Those murrine – it showed another code before ( another than setup:2579) – I googled it, installed something, it showed another code – I googled it, installed something, etc. Doesn’t seem to affect installation anyhow.

Answer

Of course, after one day of googling, after I posted question – the answer has been found.

Here: http://www.tkalin.com/blog_posts/installing-adobe-air-and-elance-tracker-on-ubuntu-13-10-saucy-salamander-64-bit I’ve found another set of “before installing adobe air, install these libs” and it worked – unlike tons of those before.

Here it is.

sudo apt-get install libxt6:i386 libnspr4-0d:i386 libgtk2.0-0:i386 libstdc++6:i386 libnss3-1d:i386 lib32nss-mdns libxml2:i386 libxslt1.1:i386 libcanberra-gtk-module:i386 gtk2-engines-murrine:i386

And you have to create a symbolic link to your gnome keyring:

sudo ln -s /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
sudo ln -s /usr/lib/x86_64-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0

Note for Ubuntu 16.04 +

Instead of the package libnss32-mdns, install libnss-mdns:i386 package. That’ll solve the problem of package not found error.

Attribution
Source : Link , Question Author : Den Drobiazko , Answer Author : Anwar

Leave a Comment