Adobe AIR install problem, Ubuntu x64 14.04 [duplicate]

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.


Here is the one that works for me: http://stdout.in/en/post/how_to_install_elance_tracker_on_latest_Ubuntu

Taken from the web page:

Here is one quick script. Save it as install_adobe_air.sh

#!/bin/bash
apt-get install 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
cd /tmp
apt-get download libgnome-keyring0:i386
dpkg-deb -R libgnome-keyring0_3.8.0-2_i386.deb gnome-keyring
cp gnome-keyring/usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/i386-linux-gnu/
ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/i386-linux-gnu/libgnome-keyring.so.0
ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0 /usr/lib/libgnome-keyring.so.0
ln -s /usr/lib/i386-linux-gnu/libgnome-keyring.so.0.2.0 /usr/lib/libgnome-keyring.so.0.2.0
wget http://airdownload.adobe.com/air/lin/download/2.6/AdobeAIRInstaller.bin
chmod a+x AdobeAIRInstaller.bin
./AdobeAIRInstaller.bin
rm ./AdobeAIRInstaller.bin
rm /usr/lib/libgnome-keyring.so.0
rm /usr/lib/libgnome-keyring.so.0.2.0

Make it executable sudo chmod a+x install_adobe_air.sh And run sudo ./install_adobe_air.sh (during running Abode Air wizard will appear, you should go through it).


sudo wget -O adobe-air.sh http://drive.noobslab.com/data/apps/AdobeAir/adobe-air.sh

and next

sudo chmod +x adobe-air.sh;sudo ./adobe-air.sh

Just installed Adobe Air on Ubuntu 14.04 x64 with two clicks:

  1. Download Debian package from http://airdownload.adobe.com/air/lin/download/2.6/adobeair.deb
  2. Install it (e.g. just be double-clicking in your file browser from your download folder)

Ignore warnings that the package is of low quality, etc. - Adobe apparently doesn't care much about this Linux port, so one needs to take what one can get ...

Works fine (needed it for playing Defender's quest: http://steamcommunity.com/app/218410/).